setup.py
2.08 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
75
import os
import sys
import subprocess
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
# test
requires=['pyramid==1.5.8',
'SQLAlchemy==1.2.10',
'transaction',
'pyramid_tm',
'pyramid_debugtoolbar',
'zope.sqlalchemy==1.0',
'waitress==1.1.0',
'ziggurat-foundations==0.5.6',
'cryptacular==1.4.1',
'colander==1.4',
'deform>=2.0a2',
'pyramid_chameleon',
'psycopg2',
'alembic>=0.3.4',
'pyramid_beaker==0.8',
'pytz',
'sqlalchemy-datatables==0.1.6',
'recaptcha-client',
'pyJasper==0.41',
'informixdb==2.5',
'z3c.rml==3.5.0',
'xlrd',
'pyramid_rpc',
'requests',
'unoconv',
'py3o.template',
'qrcode'
]
if sys.argv[1:] and sys.argv[1] == 'develop-use-pip':
bin_ = os.path.split(sys.executable)[0]
pip = os.path.join(bin_, 'pip')
for package in requires:
cmd = [pip, 'install', package]
subprocess.call(cmd)
cmd = [sys.executable, sys.argv[0], 'develop']
subprocess.call(cmd)
sys.exit()
setup(name='esipkd',
version='0.0',
description='esipkd',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='',
author_email='',
url='',
keywords='web pyramid pylons',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="esipkd",
entry_points = """\
[paste.app_factory]
main = esipkd:main
[console_scripts]
initialize_esipkd_db = esipkd.scripts.initializedb:main
""",
)