setup.py
1.59 KB
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
line = CHANGES.splitlines()[0]
version = line.split()[0]
requires = [
"wheel",
"setuptools",
"pip",
"WebOb",
"certifi",
"pyramid",
"pyramid_rpc",
"venusian",
"translationstring",
"plaster",
"hupper",
"urllib3",
"idna",
"pytz",
"requests",
"pyreportjasper",
#"z3c.rml",
# "pikepdf",
"qrcode",
"papyrus",
"fdf",
"pypdf"
]
dev_requires = [
'pyramid_debugtoolbar',
'pytest',
]
setup(
name='opensipkd-tools',
version=version,
description='Tools openSIPKD',
long_description=README + '\n\n' + CHANGES,
author='Agus Gustiana',
author_email='aa.gustiana@gmail.com',
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
license='Apache Software License',
keywords='web pyramid pylons base',
packages=find_packages(),
zip_safe=False,
install_requires=requires,
tests_require=requires,
extras_require={
'dev': dev_requires,
},
package_data={'opensipkd.tools': [
'locale/*',
'locale/id/*',
'locale/id/LC_MESSAGE/*',
]},
data_files=[],
include_package_data=True,
entry_points="""\
[console_scripts]
""",
)