forked from stacks-archive/pybitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.07 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.07 KB
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
"""
pybitcoin
==============
"""
from setuptools import setup, find_packages
setup(
name='pybitcoin',
version='0.8.1',
url='https://github.com/namesystem/pybitcoin',
license='MIT',
author='Halfmoon Labs, Inc.',
author_email='hello@onename.com',
description=("Tools for Bitcoin & other cryptocurrencies (private & ",
"public keys, addresses, transactions, RPC, etc.)."),
keywords='bitcoin btc litecoin namecoin dogecoin cryptocurrency',
packages=find_packages(),
zip_safe=False,
install_requires=[
'commontools==0.1.0',
'ecdsa==0.11',
'utilitybelt>=0.2.1',
'requests>=2.4.3',
'pybitcointools==1.1.15',
'python-bitcoinrpc==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',
],
)