-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup, find_packages
# to set __version__
exec(open('blockstack_tor/version.py').read())
setup(
name='blockstack-tor',
version=__version__,
url='https://github.com/blockstack/blockstack-tor',
license='MIT',
author='Blockstack.org',
author_email='[email protected]',
description='Blockstack/Tor integration for doing .onion lookups with Blockstack',
keywords='blockchain blockstack name key value naming dns tor onion',
packages=find_packages(),
scripts=[
'bin/blockstack-tor'
],
download_url='https://github.com/blockstack/blockstack-tor/archive/master.zip',
zip_safe=False,
include_package_data=True,
install_requires=[
'blockstack>=0.14.2',
'stem>=1.5.4',
],
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',
],
)