forked from richardkiss/pycoin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·71 lines (68 loc) · 2.12 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
#!/usr/bin/env python
from setuptools import setup
from pycoin.version import version
setup(
name="pycoinhaobtc",
version=version,
packages=[
"pycoin",
"pycoin.blockchain",
"pycoin.cmds",
"pycoin.coins",
"pycoin.coins.bcash",
"pycoin.coins.bitcoin",
"pycoin.coins.hardfork",
"pycoin.coins.btg",
"pycoin.coins.lbtc",
"pycoin.coins.sbtc",
"pycoin.coins.ubtc",
"pycoin.coins.bcx",
"pycoin.coins.bcd",
"pycoin.coins.zcash",
"pycoin.contrib",
"pycoin.convention",
"pycoin.ecdsa",
"pycoin.ecdsa.native",
"pycoin.key",
"pycoin.message",
"pycoin.networks",
"pycoin.serialize",
"pycoin.services",
"pycoin.tx",
"pycoin.tx.pay_to",
"pycoin.tx.script",
"pycoin.wallet"
],
author="Richard Kiss",
entry_points={
'console_scripts':
[
'block = pycoin.cmds.block:main',
'ku = pycoin.cmds.ku:main',
'tx = pycoin.cmds.tx:main',
'msg = pycoin.cmds.msg:main',
# these scripts are obsolete
'genwallet = pycoin.cmds.genwallet:main',
'spend = pycoin.cmds.spend:main',
'bu = pycoin.cmds.bitcoin_utils:main',
]
},
install_requires=[
'pyblake2==1.1.2',
'ripemd-hash==1.0.1',
],
author_email="[email protected]",
url="https://github.com/richardkiss/pycoin",
license="http://opensource.org/licenses/MIT",
description="Utilities for Bitcoin and altcoin addresses and transaction manipulation.",
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
'Topic :: Internet :: Bitcoin',
'Topic :: Internet :: Cryptocurrency',
'Topic :: Software Development :: Libraries :: Python Modules',
],)