-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (55 loc) · 2.01 KB
/
setup.py
File metadata and controls
59 lines (55 loc) · 2.01 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
from setuptools import setup, find_packages
import os
VERSION = '0.1.1'
INSTALL_REQUIRES = [
'setuptools',
'openprocurement.auction',
'WTForms',
'WTForms-JSON',
]
EXTRAS_REQUIRE = {
'test': [
'pytest',
'pytest-mock',
'pytest-cov'
]
}
ENTRY_POINTS = {
'console_scripts': [
'auction_worker = openprocurement.auction.worker.cli:main',
],
'openprocurement.auction.auctions': [
'belowThreshold = openprocurement.auction.worker.includeme:belowThreshold',
'aboveThresholdUA = openprocurement.auction.worker.includeme:aboveThresholdUA',
'aboveThresholdEU = openprocurement.auction.worker.includeme:aboveThresholdEU',
'competitiveDialogueEU.stage2 = openprocurement.auction.worker.includeme:competitiveDialogueEU',
'competitiveDialogueUA.stage2 = openprocurement.auction.worker.includeme:competitiveDialogueUA',
'aboveThresholdUA.defense = openprocurement.auction.worker.includeme:aboveThresholdUAdefense',
],
'openprocurement.auction.robottests': [
'auction_test = openprocurement.auction.worker.tests.functional.main:includeme'
]
}
setup(name='openprocurement.auction.worker',
version=VERSION,
description="",
long_description=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.worker',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['openprocurement', 'openprocurement.auction'],
include_package_data=True,
zip_safe=False,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
entry_points=ENTRY_POINTS,
)