forked from richardkiss/pycoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·51 lines (48 loc) · 1.62 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
#!/usr/bin/env python
from setuptools import setup
version = "0.60"
setup(
name="pycoin",
version=version,
packages = [
"pycoin",
"pycoin.blockchain",
"pycoin.convention",
"pycoin.ecdsa",
"pycoin.ecdsa.native",
"pycoin.key",
"pycoin.network",
"pycoin.tx",
"pycoin.tx.pay_to",
"pycoin.tx.script",
"pycoin.serialize",
"pycoin.services",
"pycoin.scripts",
"pycoin.wallet"
],
author="Richard Kiss",
entry_points = { 'console_scripts':
[
'block = pycoin.scripts.block:main',
'ku = pycoin.scripts.ku:main',
'tx = pycoin.scripts.tx:main',
'cache_tx = pycoin.scripts.cache_tx:main',
'fetch_unspent = pycoin.scripts.fetch_unspent:main',
## these scripts are obsolete
'genwallet = pycoin.scripts.genwallet:main',
'spend = pycoin.scripts.spend:main',
'bu = pycoin.scripts.bitcoin_utils:main',
]
},
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.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],)