2020-03-05 09:33:23 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='conservancy_beancount',
|
|
|
|
description="Plugin, library, and reports for reading Conservancy's books",
|
2020-08-22 12:39:43 -04:00
|
|
|
version='1.8.8',
|
2020-03-05 09:33:23 -05:00
|
|
|
author='Software Freedom Conservancy',
|
|
|
|
author_email='info@sfconservancy.org',
|
|
|
|
license='GNU AGPLv3+',
|
|
|
|
|
|
|
|
install_requires=[
|
2020-05-28 08:39:50 -04:00
|
|
|
'babel>=2.6', # Debian:python3-babel
|
2020-05-25 11:16:57 -04:00
|
|
|
'beancount>=2.2', # Debian:beancount
|
2020-07-29 15:46:14 -04:00
|
|
|
'GitPython>=2.0', # Debian:python3-git
|
2020-06-03 19:03:02 -04:00
|
|
|
# 1.4.1 crashes when trying to save some documents.
|
|
|
|
'odfpy>=1.4.0,!=1.4.1', # Debian:python3-odf
|
2020-05-25 11:16:57 -04:00
|
|
|
'PyYAML>=3.0', # Debian:python3-yaml
|
|
|
|
'regex', # Debian:python3-regex
|
2020-03-24 09:08:08 -04:00
|
|
|
'rt>=2.0',
|
2020-03-05 09:33:23 -05:00
|
|
|
],
|
2020-03-18 08:14:36 -04:00
|
|
|
setup_requires=[
|
|
|
|
'pytest-mypy',
|
2020-05-25 11:16:57 -04:00
|
|
|
'pytest-runner', # Debian:python3-pytest-runner
|
2020-03-18 08:14:36 -04:00
|
|
|
],
|
|
|
|
tests_require=[
|
2020-05-25 11:16:57 -04:00
|
|
|
'mypy>=0.770', # Debian:python3-mypy
|
|
|
|
'pytest', # Debian:python3-pytest
|
2020-03-18 08:14:36 -04:00
|
|
|
],
|
2020-03-05 09:33:23 -05:00
|
|
|
|
2020-05-18 09:21:08 -04:00
|
|
|
packages=[
|
|
|
|
'conservancy_beancount',
|
|
|
|
'conservancy_beancount.plugin',
|
|
|
|
'conservancy_beancount.reports',
|
|
|
|
],
|
2020-05-04 16:36:59 -04:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2020-06-12 15:08:08 -04:00
|
|
|
'accrual-report = conservancy_beancount.reports.accrual:entry_point',
|
2020-08-16 21:14:09 -04:00
|
|
|
'balance-sheet-report = conservancy_beancount.reports.balance_sheet:entry_point',
|
2020-08-10 10:02:40 -04:00
|
|
|
'extract-odf-links = conservancy_beancount.tools.extract_odf_links:entry_point',
|
2020-06-21 15:27:43 -04:00
|
|
|
'fund-report = conservancy_beancount.reports.fund:entry_point',
|
2020-06-16 10:18:18 -04:00
|
|
|
'ledger-report = conservancy_beancount.reports.ledger:entry_point',
|
2020-06-25 10:51:37 -04:00
|
|
|
'opening-balances = conservancy_beancount.tools.opening_balances:entry_point',
|
2020-05-04 16:36:59 -04:00
|
|
|
],
|
|
|
|
},
|
2020-03-05 09:33:23 -05:00
|
|
|
)
|