This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
72 lines (64 loc) · 1.84 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
68
69
70
71
72
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
install_requires = [
'coalaip==0.0.3',
'bigchaindb_driver~=0.4.0',
]
tests_require = [
'tox>=2.3.1',
'coverage>=4.1',
'flake8>=2.6.0',
'pytest>=3.0.1',
'pytest-cov',
'pytest-mock',
'bigchaindb~=1.0.1',
]
dev_require = [
'ipdb',
'ipython',
]
docs_require = [
'Sphinx>=1.4.4',
'sphinx-autobuild',
'sphinxcontrib-napoleon>=0.4.4',
'sphinx_rtd_theme',
]
setup(
name='coalaip-bigchaindb',
version='0.0.5',
description="BigchainDB ledger plugin for COALA IP's Python reference implementation",
long_description=readme + '\n\n' + history,
author='BigchainDB',
author_email='dev@bigchaindb.com',
url='https://github.com/bigchaindb/pycoalaip-bigchaindb',
packages=find_packages(exclude=['tests*']),
entry_points={
'coalaip_plugin': 'bigchaindb = coalaip_bigchaindb.plugin:Plugin'
},
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 plugin', 'bigchaindb'],
classifiers=[
'Development Status :: 3 - 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',
],
)