-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
80 lines (78 loc) · 2.13 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
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
76
77
78
79
80
from setuptools import setup, find_packages
import os
version = '4.0.1'
install_requires = [
'setuptools',
'requests',
'APScheduler',
'iso8601',
'python-dateutil',
'Flask',
'Flask-Redis',
'WSGIProxy2',
'gevent',
'sse',
'flask_oauthlib',
'PyYAML',
'request_id_middleware',
'restkit',
'PyMemoize',
'barbecue',
'PasteDeploy',
# ssl warning
'pyopenssl',
'ndg-httpsclient',
'pyasn1',
'openprocurement_client',
'python-consul',
'retrying',
'zope.interface',
'walkabout'
]
extras_require = {
'test': [
'robotframework',
'robotframework-seleniumlibrary',
'robotframework-debuglibrary',
'webtest',
'mock',
'pytest-cov'
]
}
entry_points = {
'console_scripts': [
'auctions_chronograph = openprocurement.auction.chronograph:main',
'auctions_data_bridge = openprocurement.auction.databridge:main',
'auction_test = openprocurement.auction.tests.main:main [test]'
],
'paste.app_factory': [
'auctions_server = openprocurement.auction.app:make_auctions_app',
],
'openprocurement.auction.auctions': [
'default = openprocurement.auction.includeme:default'
]
}
setup(name='openprocurement.auction',
version=version,
description="",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
],
keywords='',
author='Quintagroup, Ltd.',
author_email='[email protected]',
license='Apache License 2.0',
url='https://github.com/openprocurement/openprocurement.auction',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['openprocurement'],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require=extras_require,
entry_points=entry_points,
)