mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
30 lines
767 B
Python
30 lines
767 B
Python
"""
|
|
BigchainDB: A Scalable Blockchain Database
|
|
|
|
For full docs visit https://bigchaindb.readthedocs.org
|
|
|
|
"""
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='BigchainDB',
|
|
version='0.0.0.dev1',
|
|
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',
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
],
|
|
|
|
packages=[],
|
|
)
|