Files @ 76f2707aacf7
Branch filter:

Location: NPO-Accounting/import2ledger/setup.py

Brett Smith
hooks.ledger_entry: New hook to output Ledger entries.

This is roughly the smallest diff necessary to move output to a hook.
There's a lot of code reorganization that should still happen to bring it
better in line with this new structure.
#!/usr/bin/env python3

import itertools
import sys

from setuptools import setup, find_packages

REQUIREMENTS = {
    'install_requires': ['babel'],
    'setup_requires': ['pytest-runner'],
    'extras_require': {
        'nbpy2017': ['beautifulsoup4', 'html5lib'],
    },
}

if sys.version_info < (3, 4):
    REQUIREMENTS['install_requires'].extend(['enum34'])

REQUIREMENTS['tests_require'] = [
    'pytest',
    'PyYAML',
    *itertools.chain(*REQUIREMENTS['extras_require'].values()),
]

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+',

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

    **REQUIREMENTS,
)