-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
46 lines (39 loc) · 1.65 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
__author__ = "Ghislain Bourgeois"
__copyright__ = "Copyright (C) 2018 Ghislain Bourgeois"
__license__ = "GNU GPLv2"
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="beancount_portfolio_allocation",
version="0.3.0",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'bean-portfolio-allocation-report = beancount_portfolio_allocation.allocation_report:main',
],
},
setup_requires=['pytest-runner'],
install_requires=['beancount>=2.1.2', 'tabulate'],
tests_require=['pytest', 'testfixtures'],
test_suite="tests",
author="Ghislain Bourgeois",
author_email="[email protected]",
description="Beancount portfolio allocation report",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPLv2",
keywords="beancount report portfolio allocation",
url="https://github.com/ghislainbourgeois/beancount_portfolio_allocation/",
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Investment",
),
)