#!/usr/bin/env python # -*- coding: utf-8 -*- """ Blockstack ~~~~~ copyright: (c) 2014-2015 by Halfmoon Labs, Inc. copyright: (c) 2016 by Blockstack.org This file is part of Blockstack Blockstack is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Blockstack is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Blockstack. If not, see . """ from setuptools import setup, find_packages import os exec(open("blockstack/version.py").read()) setup( name='blockstack', version=__version__, url='https://github.com/blockstack/blockack-core', license='GPLv3', author='Blockstack.org', author_email='support@blockstack.org', description='Name registrations on the Bitcoin blockchain with external storage', keywords='blockchain bitcoin btc cryptocurrency name key value store data', packages=find_packages(), scripts=['bin/blockstack-server', 'bin/blockstack-core', 'bin/blockstack-snapshots', 'bin/blockstack'], download_url='https://github.com/blockstack/blockstore/archive/master.zip', zip_safe=False, include_package_data=True, install_requires=[ 'virtualchain>=0.14.1', 'keychain>=0.1.4', 'protocoin>=0.2', 'blockstack-profiles>=0.14.1', 'pybitcoin>=0.9.9', 'blockstack-zones>=0.14.1', 'defusedxml>=0.4.1', 'keylib>=0.0.5', 'mixpanel>=4.3.1', 'pycrypto>=2.6.1', 'simplejson>=3.8.2', 'jsonschema>=2.5.1', 'fastecdsa>=1.3.2', 'basicrpc>=0.0.2', # DHT storage driver 'boto>=2.38.0', # S3 storage driver 'dropbox>=7.1.1', # Dropbox driver ], classifiers=[ 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2 :: Only', 'Topic :: Internet', 'Topic :: Security :: Cryptography', 'Topic :: Software Development :: Libraries :: Python Modules', ], )