-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (45 loc) · 1.11 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
setup(
author='František Gažo',
author_email='[email protected]',
name='invoicer',
version='0.1.0',
description="""
Invoicer
""",
long_description="""
Invoicer
""",
url='',
platforms=['MacOS'],
license='MIT License',
classifiers=[ # https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Programming Language :: Python :: 2.7',
'Development Status :: 1 - Planning',
'Operating System :: MacOS',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Utilities'
],
packages=['invoicer'],
package_dir={
'invoicer': 'src/invoicer'
},
package_data={
'invoicer': [
'res/fonts/*.ttf',
'res/imgs/*.png',
'res/values/*.yaml'
]
},
install_requires=[ # list of this package dependencies
'pyyaml==3.12',
'reportlab==3.4.0',
],
entry_points='''
[console_scripts]
invoicer=invoicer.main:main
'''
)