Files @ 8d3816a8fd87
Branch filter:

Location: NPO-Accounting/conservancy_beancount/setup.py

Brett Smith
config: Add Config.rt_credentials method.

This loads settings from the same environment variables and ~/.rtrc
file as the rt CLI.

Note that it does *not* support RTCONFIG and the config file
searching, because right now that seems like more work for more
trouble to me.
#!/usr/bin/env python3

from setuptools import setup

setup(
    name='conservancy_beancount',
    description="Plugin, library, and reports for reading Conservancy's books",
    version='0.1',
    author='Software Freedom Conservancy',
    author_email='info@sfconservancy.org',
    license='GNU AGPLv3+',

    install_requires=[
        'beancount>=2.2',
    ],
    setup_requires=[
        'pytest-mypy',
        'pytest-runner',
    ],
    tests_require=[
        'mypy>=0.770',
        'pytest',
    ],

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