-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
26 lines (25 loc) · 948 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
from distutils.core import setup, Extension
setup(
name = "pyspv",
author = "Chuck \"Sarchar\"",
author_email = "[email protected]",
url = "https://github.com/sarchar/pyspv",
license = "MIT",
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet",
"Topic :: Security :: Cryptography",
"Topic :: System :: Networking",
"Topic :: System :: Distributed Computing",
],
description = "Bitcoin SPV implementation in Python",
packages = ["pyspv", "pyspv.monitors", "pyspv.payments"],
requires = ['bitarray (>=0.8.1)'],
version = '0.0.1',
long_description = open('README.md').read(),
)