setup.py.x
1.51 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
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 = []
prod_requires = [
'sqlalchemy', 'pyramid_rpc', 'transaction', 'pyramid',
'opensipkd-base @'
'git+https://git.opensipkd.com/aa.gusti/base.git@ciamis#egg=opensipkd-base>=4.0.0',
]
dev_requires = []
setup(
name='opensipkd_coba',
version=version,
url='',
description='Test Application',
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(),
# package_dir={'': 'src'},
package_data={'opensipkd.coba': [
'views/templates/*.pt',
'views/templates/readonly/*.pt',
], },
zip_safe=False,
install_requires=requires,
tests_require=requires,
extras_require={
'dev': dev_requires,
'prod':prod_requires,
},
include_package_data=True,
entry_points="""\
[console_scripts]
initialize_coba_db = opensipkd.coba.scripts.initializedb:main
""",
)