-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
60 lines (54 loc) · 1.56 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
from setuptools import setup, find_packages
import os
version = '1.0.3'
requires = [
'redis',
'setuptools',
]
test_requires = requires + [
'webtest',
'python-coveralls',
'mock==1.0.1',
'requests_mock==1.3.0',
'bottle'
]
databridge_requires = requires + [
'PyYAML',
'gevent',
'redis',
'LazyDB',
'ExtendedJournalHandler',
'requests',
'openprocurement_client>=1.0b2'
]
entry_points = {
'console_scripts': [
'bot_identification_bridge = openprocurement.bot.identification.databridge:main'
]
}
setup(name='openprocurement.bot.identification',
version=version,
description="",
long_description=open("README.rst").read(),
classifiers=[
"Framework :: Pylons",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
],
keywords="web services",
author='Quintagroup, Ltd.',
author_email='[email protected]',
license='Apache License 2.0',
url='https://github.com/openprocurement/openprocurement.bot.identification',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['openprocurement', 'openprocurement.bot'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=test_requires,
extras_require={'databridge': databridge_requires,
'test': test_requires},
entry_points=entry_points,
)