generated from AlexanderWillner/python-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
94 lines (68 loc) · 2.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
import pathlib
from setuptools import setup, find_packages
from beanstatement import __version__
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='beancount-financial-statement',
version=__version__,
description='A report generator for beancount financial statement.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/e7h4n/beancount-financial-statement',
author='e7h4n',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial :: Accounting',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
],
keywords='beancount, financial statement',
package_dir={'beancount-financial-statement': 'src'},
python_requires='>=3.6, <4',
packages=find_packages(exclude=['experiments*']),
package_data = {
'beanstatement': ['templates/*.mustache'],
},
install_requires=[
'logzero>=1.7.0',
'click>=7,<9',
'pystache>=0.6.0',
'beancount>=2.3.6',
],
extras_require={
'dev': [],
'test': [
'coverage',
'pycodestyle',
'pyflakes',
'pylint',
'flake8',
'mypy',
'pytest',
'python-coveralls',
'beautifulsoup4'
],
},
entry_points={
'console_scripts': [
'bean-statement=beanstatement.scripts.main:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/e7h4n/beancount-financial-statement/issues',
'Source': 'https://github.com/e7h4n/beancount-financial-statement/',
},
)