1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-16 17:43:21 +02:00
bigchaindb/setup.py

99 lines
2.4 KiB
Python
Raw Normal View History

2016-02-09 21:50:55 +01:00
"""
BigchainDB: A Scalable Blockchain Database
For full docs visit https://bigchaindb.readthedocs.org
"""
2016-03-17 17:03:08 +01:00
from setuptools import setup, find_packages
2016-02-09 21:50:55 +01:00
# get the version
version = {}
with open('bigchaindb/version.py') as fp:
exec(fp.read(), version)
2016-02-12 01:32:00 +01:00
tests_require = [
'pytest',
'coverage',
'pep8',
'pyflakes',
'pylint',
'pytest',
'pytest-cov',
2016-02-19 00:11:44 +01:00
'pytest-xdist',
2016-02-23 03:37:33 +01:00
'pytest-flask',
2016-02-12 01:32:00 +01:00
]
dev_require = [
'ipdb',
'ipython',
]
2016-02-17 15:47:47 +01:00
docs_require = [
'recommonmark>=0.4.0',
'Sphinx>=1.3.5',
'sphinxcontrib-napoleon>=0.4.4',
2016-03-02 01:12:42 +01:00
'sphinx-rtd-theme>=0.1.9',
2016-02-17 15:47:47 +01:00
]
2016-05-11 08:56:47 +02:00
benchmarks_require = [
'line-profiler==1.0',
]
2016-02-09 21:50:55 +01:00
setup(
name='BigchainDB',
version=version['__version__'],
2016-02-09 21:50:55 +01:00
description='BigchainDB: A Scalable Blockchain Database',
long_description=__doc__,
url='https://github.com/BigchainDB/bigchaindb/',
author='BigchainDB Contributors',
author_email='dev@bigchaindb.com',
license='AGPLv3',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
2016-02-22 11:51:17 +01:00
'Intended Audience :: Developers',
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Software Development',
'Natural Language :: English',
2016-02-09 21:50:55 +01:00
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
2016-02-22 11:51:17 +01:00
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
2016-02-09 21:50:55 +01:00
],
2016-03-17 17:17:27 +01:00
packages=find_packages(exclude=['tests*']),
2016-02-10 19:55:33 +01:00
entry_points={
'console_scripts': [
'bigchaindb=bigchaindb.commands.bigchain:main'
2016-02-10 19:55:33 +01:00
],
'bigchaindb.consensus': [
'default=bigchaindb.consensus:BaseConsensusRules'
]
2016-02-10 19:55:33 +01:00
},
install_requires=[
2016-04-26 03:24:56 +02:00
'rethinkdb==2.3.0',
2016-02-10 19:55:33 +01:00
'pysha3==0.3',
'pytz==2015.7',
'cryptoconditions==0.2.2',
2016-02-10 19:55:33 +01:00
'statsd==3.2.1',
'python-rapidjson==0.0.6',
'logstats==0.2.1',
'base58==0.2.2',
2016-02-23 03:37:33 +01:00
'flask==0.10.1',
2016-02-26 16:23:50 +01:00
'requests==2.9',
2016-04-07 10:58:29 +02:00
'gunicorn~=19.0',
2016-02-10 19:55:33 +01:00
],
setup_requires=['pytest-runner'],
2016-02-12 01:32:00 +01:00
tests_require=tests_require,
extras_require={
'test': tests_require,
2016-05-11 08:56:47 +02:00
'dev': dev_require + tests_require + docs_require + benchmarks_require,
2016-02-17 15:47:47 +01:00
'docs': docs_require,
},
2016-02-09 21:50:55 +01:00
)