mirror of https://github.com/nucypher/nucypher.git
Using setup.py and tox
parent
512bf54105
commit
d976d41747
8
setup.py
8
setup.py
|
@ -4,6 +4,13 @@ INSTALL_REQUIRES = [
|
|||
'kademlia>=1.0',
|
||||
'rpcudp>=3.0']
|
||||
|
||||
TESTS_REQUIRE = [
|
||||
'pytest',
|
||||
'coverage',
|
||||
'pytest-cov',
|
||||
'pdbpp',
|
||||
]
|
||||
|
||||
# should add --process-dependency-links to pip
|
||||
LINKS = [
|
||||
'https://github.com/bmuller/kademlia/archive/python3.5.tar.gz#egg=kademlia-1.0',
|
||||
|
@ -14,4 +21,5 @@ setup(name='nkms',
|
|||
description='NuCypher decentralized KMS',
|
||||
install_requires=INSTALL_REQUIRES,
|
||||
dependency_links=LINKS,
|
||||
extras_require={'testing': TESTS_REQUIRE},
|
||||
packages=['nkms'])
|
||||
|
|
Loading…
Reference in New Issue