kademlia/setup.py

16 lines
453 B
Python
Raw Normal View History

2014-01-03 02:39:06 +00:00
#!/usr/bin/env python
from setuptools import setup, find_packages
import kademlia
2014-01-03 02:39:06 +00:00
setup(
name="kademlia",
version=kademlia.__version__,
2014-01-03 02:39:06 +00:00
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(),
install_requires=["rpcudp>=3.0.0"]
2014-01-03 02:39:06 +00:00
)