-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (45 loc) · 1.68 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
from setuptools import setup, find_packages
from os import path
from codecs import open
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gnucash-reports',
version='0.3.0',
packages=find_packages(),
url='https://github.com/MeerkatLabs/gnucash-reports',
license='MIT',
author='Robert Robinson',
author_email='[email protected]',
description='Generate JSON reports for rendering in a viewer.',
long_description=long_description,
install_requires=['dateutils==0.6.6',
'simplejson==3.14.0',
'pyaml==17.12.1',
'piecash==0.18.0',
'enum34==1.1.6',
'requests==2.18.4'
],
classifiers=[
'Development Status :: 3 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Office/Business :: Financial',
],
entry_points={
'console_scripts': [
'gnucash_reports=gnucash_reports.commands.reports:main',
'gnucash_update_prices=gnucash_reports.commands.update_prices:main',
],
'gnucash_reports_reports': [
'core_reports=gnucash_reports.configuration.register_core:register_core_reports'
],
'gnucash_reports_configuration': [
'core_configuration=gnucash_reports.configuration.register_core:register_core_configuration_plugins'
]
}
)