forked from vertcoin-project/p2pool-vtc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 674 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='p2pool-vtc',
version='3.0.0',
description='p2pool for Vertcoin',
url='http://github.com/vertcoin-project/p2pool-vtc',
license='GPLv3',
author = 'James Lovejoy',
author_email = 'jameslovejoy1@gmail.com',
packages=['p2pool','p2pool/bitcoin','p2pool/bitcoin/networks','p2pool/util','p2pool/networks',
'nattraverso', 'nattraverso/pynupnp'],
install_requires=[
'twisted',
'argparse',
'pyOpenSSL',
'lyra2re2-hash',
'verthash'
],
scripts=['run_p2pool.py'],
include_package_data=True,
zip_safe=False)