17 lines
504 B
Python
17 lines
504 B
Python
|
#!/usr/bin/env python
|
||
|
from setuptools import setup, find_packages
|
||
|
from kademlia import version
|
||
|
|
||
|
setup(
|
||
|
name="kademlia",
|
||
|
version=version,
|
||
|
description="Kademlia is a distributed hash table for decentralized peer-to-peer computer networks.",
|
||
|
author="Brian Muller",
|
||
|
author_email="bamuller@gmail.com",
|
||
|
license="MIT",
|
||
|
url="http://github.com/bmuller/kademlia",
|
||
|
packages=find_packages(),
|
||
|
requires=["twisted", "rpcudp"],
|
||
|
install_requires=['twisted>=12.0', "rpcudp>=0.3"]
|
||
|
)
|