forked from stacks-network/stacks-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·74 lines (66 loc) · 2.59 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python2
# -*- 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 <http://www.gnu.org/licenses/>.
"""
from setuptools import setup, find_packages
import os
exec(open("blockstack/version.py").read())
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
README = f.read()
setup(
name='blockstack',
version=__version__,
url='https://github.com/blockstack/blockstack-core',
license='GPLv3',
author='Blockstack.org',
author_email='[email protected]',
description='Name registrations on the Bitcoin blockchain with external storage',
# long_description=README,
keywords='blockchain bitcoin btc cryptocurrency name key value store data',
packages=find_packages(),
scripts=['bin/blockstack-server', 'bin/blockstack-core', 'bin/blockstack-snapshots'],
download_url='https://github.com/blockstack/blockstore/archive/master.zip',
zip_safe=False,
include_package_data=True,
install_requires=[
'virtualchain>=20.0.1.0',
'keychain>=0.14.2.0',
'protocoin>=0.2',
'blockstack-zones>=0.19.0',
'defusedxml>=0.4.1',
'pystun>=0.1.0',
'keylib>=0.1.1',
'simplejson>=3.8.2',
'jsonschema>=2.5.1, <=2.99',
'jsontokens>=0.0.5',
'cryptography>=2.6',
'pyparsing>=2.2.0', # not required, but causes problems if not installed properly,
'requests>=2.20',
'cachetools==2.0.0'
],
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',
],
)