forked from petertodd/python-bitcoinlib
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·27 lines (22 loc) · 697 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·27 lines (22 loc) · 697 Bytes
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
#!/usr/bin/env python
fromsetuptoolsimportsetup, find_packages
importos
frombitcoinlibimport__version__
here=os.path.abspath(os.path.dirname(__file__))
withopen(os.path.join(here, 'README')) asf:
README=f.read()
requires= []
setup(name='python-bitcoinlib',
version=__version__,
description='The Swiss Army Knife of the Bitcoin protocol.',
long_description=README,
classifiers=[
"Programming Language :: Python",
],
url='https://github.com/petertodd/python-bitcoinlib',
keywords='bitcoinlib',
packages=find_packages(),
zip_safe=False,
install_requires=requires,
test_suite="bitcoinlib.tests"
)