forked from openprocurement/openprocurement.auction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (72 loc) · 2.22 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
from setuptools import setup, find_packages
import os
version = '2.0.4'
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=[
'setuptools',
'requests',
'APScheduler',
'iso8601',
'python-dateutil',
'Flask',
'WTForms',
'WTForms-JSON',
'Flask-Redis',
'WSGIProxy2',
'gevent',
'sse',
'flask_oauthlib',
'Flask-Assets',
'cssmin',
'jsmin',
'PyYAML',
'request_id_middleware',
'restkit',
'PyMemoize',
'barbecue',
# ssl warning
'pyopenssl',
'ndg-httpsclient',
'pyasn1',
'openprocurement_client'
],
extras_require={
'test': [
'robotframework',
'robotframework-selenium2library',
'robotframework-debuglibrary',
'robotframework-selenium2screenshots',
'chromedriver',
'mock'
]
},
entry_points={
'console_scripts': [
'auction_worker = openprocurement.auction.auction_worker:main',
'auctions_data_bridge = openprocurement.auction.databridge:main',
'auction_test = openprocurement.auction.tests.main:main [test]'
],
'paste.app_factory': [
'auctions_server = openprocurement.auction.auctions_server:make_auctions_app',
]
},
)