-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
26 lines (24 loc) · 814 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 setuptools import setup
import protocoin
install_requirements = ['ecdsa>=0.10']
setup(
name='protocoin',
version=protocoin.__version__,
url='https://github.com/perone/protocoin',
license='BSD License',
author=protocoin.__author__,
author_email='[email protected]',
description='A pure Python bitcoin protocol implementation.',
long_description='A pure Python bitcoin protocol implementation.',
install_requires=install_requirements,
packages=['protocoin'],
keywords='bitcoin, protocol',
platforms='Any',
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)