forked from stacks-network/pybitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 876 Bytes
/
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
"""
Coins
==============
"""
from setuptools import setup
setup(
name='Coins',
version='0.1.9',
url='https://github.com/halfmoonlabs/coins',
license='MIT',
author='Halfmoon Labs',
author_email='[email protected]',
description='Tools for Bitcoin and other cryptocurrencies (including Litecoin, Namecoin, Peercoin, and Primecoin).',
keywords='bitcoin litecoin namecoin coins',
packages=[
'coins',
],
zip_safe=False,
install_requires=[
'ecdsa>=0.10',
],
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',
],
)