Files @ f888b13c56b0
Branch filter:

Location: NPO-Accounting/import2ledger/setup.py

Brett Smith
hooks.add_entity: Better handle common name prefix parts.

Keep these with the name they're attached to, rather than breaking the name
in the middle.
#!/usr/bin/env python3

from setuptools import setup

setup(
    name='import2ledger',
    description="Import different sources of financial data to Ledger",
    version='0.1',
    author='Brett Smith',
    author_email='brettcsmith@brettcsmith.org',
    license='GNU AGPLv3+',

    install_requires=['babel'],
    setup_requires=['pytest-runner'],
    tests_require=['pytest', 'PyYAML'],

    packages=['import2ledger'],
    entry_points={},
)