-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
52 lines (44 loc) · 1.35 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
from setuptools import setup, find_packages
import os
version = '1.2.2'
requires = [
'setuptools',
'schematics',
'jsonschema==2.6.0'
]
test_requires = requires + [
'flake8',
'coverage',
'Sphinx',
'mock'
]
docs_requires = requires + [
'sphinxcontrib-httpdomain',
'sphinx_rtd_theme',
'sphinx-jsonschema'
]
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
setup(name='openprocurement.schemas.dgf',
version=version,
description="",
long_description=README,
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
],
keywords="web services",
author='Quintagroup, Ltd.',
author_email='[email protected]',
url='https://github.com/openprocurement/openprocurement.schemas.dgf',
license='Apache License 2.0',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['openprocurement', 'openprocurement.schemas'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
extras_require={'test': test_requires, 'docs': docs_requires},
test_suite="openprocurement.schemas.dgf.tests.main.suite")