forked from stacks-network/pybitcoin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (31 loc) · 983 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='coinkit',
version='0.3.0',
url='https://github.com/halfmoonlabs/coinkit',
license='MIT',
author='Halfmoon Labs',
author_email='[email protected]',
description='Tools for Bitcoin & other cryptocurrencies (incl. Litecoin, Namecoin, Peercoin, Primecoin, Dogecoin, Worldcoin, Megacoin, Anoncoin, Feathercoin, Terracoin, and Novacoin).',
keywords='bitcoin btc litecoin namecoin peercoin primecoin cryptocurrency',
packages=[
'coinkit',
],
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',
],
)