Add setup.py with kademlia deps

pull/15/head
Michael Egorov 2017-08-18 07:15:36 -07:00
parent 52a0351770
commit 1766f20f6f
1 changed files with 11 additions and 0 deletions

11
setup.py Normal file
View File

@ -0,0 +1,11 @@
from distutils.core import setup
INSTALL_REQUIRES = [
'kademlia>=1.0',
'rpcudp>=3.0']
setup(name='nkms',
version='0.1',
description='NuCypher decentralized KMS',
install_requires=INSTALL_REQUIRES,
packages=['nkms'])