Files @ d49173725a7b
Branch filter:

Location: NPO-Accounting/conservancy_beancount/setup.py

Brett Smith
tests: Ignore the DeprecationWarning from the socks module.

The socks package in Debian buster does a deprecated import from
the collections module. That's not directly relevant to our own
code (Conservancy has no business requirement for SOCKS support)
so ignore it.
#!/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',
        'rt>=2.0',
    ],
    setup_requires=[
        'pytest-mypy',
        'pytest-runner',
    ],
    tests_require=[
        'mypy>=0.770',
        'pytest',
    ],

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