This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
forked from bigchaindb/coalaip-http-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
67 lines (61 loc) · 1.7 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = [
'bigchaindb_driver~=0.2.0',
'coalaip==0.0.3',
'coalaip-bigchaindb==0.0.4',
'flask>=0.11.1',
'flask-restful>=0.3.5',
'gunicorn>=19.6.0',
'flask-cors==3.0.2',
'pymongo~=3.4',
]
tests_require = [
'tox>=2.3.1',
'flake8>=2.6.0',
'pytest>=3.0.1',
'pytest-mock',
'pytest_flask',
]
dev_require = [
'ipdb',
'ipython',
]
docs_require = [
'Sphinx>=1.4.4',
'sphinx-autobuild',
'sphinxcontrib-napoleon>=0.4.4',
'sphinx_rtd_theme',
]
setup(
name='omi_api',
version='0.0.1.dev1',
description='OMI HTTP API, using CoalaIP schema and BigchainDB as storage.',
author='BigchainDB',
author_email='[email protected]',
url='https://github.com/coalaip/omi-mvi-1.0',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'test': tests_require,
'dev': dev_require + tests_require + docs_require,
'docs': docs_require,
},
test_suite='tests',
license='Apache Software License 2.0',
zip_safe=False,
keywords=['omi', 'coalaip', 'coalaip http api', 'bigchaindb'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
entry_points={'console_scripts': ['omi-api=omi_api.cli:cli']}
)