-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
65 lines (59 loc) · 1.59 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = [
'coalaip==0.0.3',
'coalaip-bigchaindb==0.0.5',
'bigchaindb==1.0.1',
'flask>=0.11.1',
'flask-restful>=0.3.5',
'gunicorn>=19.6.0',
'flask-cors==3.0.2'
]
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='coalaip-http-api',
version='0.0.1.dev1',
description="An HTTP wrapper for CoalaIP",
author="BigchainDB",
author_email='dev@bigchaindb.com',
url='https://github.com/bigchaindb/coalaip-http-api',
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=['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',
],
)