2014-01-03 02:39:06 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
2016-07-12 12:32:02 +00:00
|
|
|
import kademlia
|
2014-01-03 02:39:06 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name="kademlia",
|
2016-07-12 12:32:02 +00:00
|
|
|
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.",
|
2019-01-16 16:21:19 +00:00
|
|
|
long_description=open("README.md").read(),
|
2014-01-03 02:39:06 +00:00
|
|
|
author="Brian Muller",
|
|
|
|
author_email="bamuller@gmail.com",
|
|
|
|
license="MIT",
|
|
|
|
url="http://github.com/bmuller/kademlia",
|
|
|
|
packages=find_packages(),
|
2019-01-16 16:21:19 +00:00
|
|
|
install_requires=open("requirements.txt").readlines(),
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.5",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
]
|
2014-01-03 02:39:06 +00:00
|
|
|
)
|