2020-03-05 14:33:23 +00:00
|
|
|
#!/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',
|
2020-04-06 18:32:41 +00:00
|
|
|
'PyYAML>=3.0',
|
2020-04-01 17:38:37 +00:00
|
|
|
'regex',
|
2020-03-24 13:08:08 +00:00
|
|
|
'rt>=2.0',
|
2020-03-05 14:33:23 +00:00
|
|
|
],
|
2020-03-18 12:14:36 +00:00
|
|
|
setup_requires=[
|
|
|
|
'pytest-mypy',
|
|
|
|
'pytest-runner',
|
|
|
|
],
|
|
|
|
tests_require=[
|
|
|
|
'mypy>=0.770',
|
|
|
|
'pytest',
|
|
|
|
],
|
2020-03-05 14:33:23 +00:00
|
|
|
|
|
|
|
packages=['conservancy_beancount'],
|
|
|
|
entry_points={},
|
|
|
|
)
|