conservancy_beancount/setup.py
Brett Smith 499f18ff62 meta_entity: Adjust what entities are allowed based on today's books.
See the comments throughout for more discussion about what cases are
or aren't allowed, and why.
2020-04-01 13:38:37 -04:00

29 lines
608 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',
'regex',
'rt>=2.0',
],
setup_requires=[
'pytest-mypy',
'pytest-runner',
],
tests_require=[
'mypy>=0.770',
'pytest',
],
packages=['conservancy_beancount'],
entry_points={},
)