-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
44 lines (38 loc) · 1.14 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
#!/usr/bin/env python
# Mostly stolen from paster generated setup.py files for pyramid projects
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
# FIXME: Also requires PyQt and SIP for the GUI, not available via pip
requires = [
'pycoin == 0.51',
'bunch',
'python-jsonrpc == 0.7.3',
#'python-bitcoinaddress = 0.2.2',
'python-bitcoinlib == 0.1.1',
'apigen == 0.1.6',
'web.py',
]
dependency_links = [
"https://github.com/petertodd/python-bitcoinlib/archive/v0.1.1.zip" +
"#egg=python-bitcoinlib",
]
setup(
name='ngcccbase',
version='0.0.10',
description='A flexible and modular base for colored coin software.',
long_description=README,
classifiers=[
"Programming Language :: Python",
],
url='https://github.com/bitcoinx/ngcccbase',
keywords='bitcoinx bitcoin coloredcoins',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
dependency_links=dependency_links,
test_suite="ngcccbase.tests",
)