Files
stacks-puppet-node/setup.py
Jude Nelson 47ecd65c37 In-progress refactoring: using virtualchain with a state engine.
* lib --> lib.old (depricating old name and storage operations)
* lib: new state-engine name operations logic, with virtualchain
* remove dead code
* add patch for coinkit
* remove dependencies on coinkit (in the new lib/)
Much more to do--will eventually remove lib.old, and will migrate
some of this code over to blockstore-client.
2015-08-04 02:25:39 -04:00

36 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=[
'pybitcoin>=0.8.3',
'kademlia>=0.2',
'python-bitcoinrpc>=0.1',
'txjson-rpc>=0.3',
'utilitybelt>=0.2.2'
'virtualchain>=0.0.1'
],
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',
],
)