ad81c45f2a
This module basically reimplements the old payment-report+income-report, in a single tool (after setting aside some of the checks that have moved to the plugin). The aging report can be implemented here too when we need that.
34 lines
751 B
Python
Executable file
34 lines
751 B
Python
Executable file
#!/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',
|
|
'PyYAML>=3.0',
|
|
'regex',
|
|
'rt>=2.0',
|
|
],
|
|
setup_requires=[
|
|
'pytest-mypy',
|
|
'pytest-runner',
|
|
],
|
|
tests_require=[
|
|
'mypy>=0.770',
|
|
'pytest',
|
|
],
|
|
|
|
packages=['conservancy_beancount'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'accrual-report = conservancy_beancount.reports.accrual:main',
|
|
],
|
|
},
|
|
)
|