mirror of https://github.com/bmuller/kademlia.git
17 lines
504 B
Python
Executable File
17 lines
504 B
Python
Executable File
#!/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>=14.0', "rpcudp>=1.0"]
|
|
)
|