mirror of https://github.com/nucypher/nucypher.git
31 lines
834 B
Python
31 lines
834 B
Python
from setuptools import setup, find_packages
|
|
|
|
INSTALL_REQUIRES = [
|
|
'kademlia>=1.0',
|
|
'rpcudp>=3.0',
|
|
'ZODB>=5.0',
|
|
'pynacl',
|
|
'npre']
|
|
|
|
TESTS_REQUIRE = [
|
|
'pytest',
|
|
'coverage',
|
|
'pytest-cov',
|
|
'pdbpp',
|
|
'ipython'
|
|
]
|
|
|
|
# should add --process-dependency-links to pip
|
|
LINKS = [
|
|
'https://github.com/bmuller/kademlia/archive/python3.5.tar.gz#egg=kademlia-1.0',
|
|
'https://github.com/bmuller/rpcudp/archive/python3.5.tar.gz#egg=rpcudp-3.0.0',
|
|
'https://github.com/nucypher/nucypher-pre-python/archive/master.tar.gz#egg=npre-0.1']
|
|
|
|
setup(name='nkms',
|
|
version='0.1',
|
|
description='NuCypher decentralized KMS',
|
|
install_requires=INSTALL_REQUIRES,
|
|
dependency_links=LINKS,
|
|
extras_require={'testing': TESTS_REQUIRE},
|
|
packages=find_packages())
|