forked from brandon-rhodes/luca
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 1.06 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
from setuptools import setup, find_packages
import luca
description, long_description = luca.__doc__.split('\n', 1)
setup(name='luca',
version='1.0',
description=description.strip(),
long_description=long_description.strip(),
author='Brandon Rhodes',
author_email='[email protected]',
url='https://github.com/brandon-rhodes/luca',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Office/Business',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Accounting',
],
packages=find_packages(),
install_requires=[
'blessings',
'docopt',
'fdfgen',
'pandas',
'pyyaml',
'reportlab',
'requests',
'pyPdf',
],
entry_points={'console_scripts': [
'luca = luca.commandline:main',
]}
)