Files @ f4978046b8a2
Branch filter:

Location: NPO-Accounting/conservancy_beancount/setup.py

Brett Smith
data: Start module with PostingMeta class.

As I'm pushing to reimplement payment-report/income-report, I see query and
reporting tools will want easy access to these kinds of views, so here it
starts.
#!/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-runner'],
    tests_require=['pytest'],

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