-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 loc) · 1.16 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
from setuptools import setup, find_packages
entry_points = {
'openprocurement.api.configurator': [
'configurator = openprocurement.configurator.ea2.includeme:includeme'
],
'openprocurement.tests': [
'configurator = openprocurement.configurator.ea2.tests:suite'
]
}
requires = [
'openprocurement.api',
]
test_requires = requires + []
setup(name='openprocurement.configurator.ea2',
version='0.2',
description='configurator',
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',
requires=requires,
namespace_packages=['openprocurement', 'openprocurement.configurator'],
extras_require={'test': test_requires},
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
entry_points=entry_points)