Files @ b41a7a99af17
Branch filter:

Location: NPO-Accounting/import2ledger/setup.py

Brett Smith
hooks: Filter entries by setting entry_data['_hook_cancel'] to True.

The current method only works for plain dicts and other simple mappings.
Mapping that may still contain items after .clear(), like ChainMap, can't
rely on the old method.
#!/usr/bin/env python3

from setuptools import setup, find_packages

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

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

    packages=find_packages(include=['import2ledger', 'import2ledger.*']),
    entry_points={
        'console_scripts': ['import2ledger = import2ledger.__main__:main'],
    },
)