Files
stacks-puppet-node/setup.py

35 lines
1.1 KiB
Python

from setuptools import setup, find_packages
setup(
name='blockstore',
version='0.0.3',
url='https://github.com/openname/blockstore',
license='MIT',
author='Onename',
author_email='support@onename.com',
description='A key-value store for name registration on the Bitcoin blockchain',
keywords='blockchain bitcoin btc cryptocurrency name key value store data',
packages=find_packages(),
scripts=['bin/blockstored', 'bin/blockstore-cli'],
download_url='https://github.com/openname/blockstore/archive/master.zip',
zip_safe=False,
include_package_data=True,
install_requires=[
'coinkit>=0.7.7',
'kademlia>=0.5',
'python-bitcoinrpc>=0.1',
'txjson-rpc>=0.3',
'utilitybelt>=0.2.2'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)