added long description to setup

This commit is contained in:
Brian Muller 2019-01-16 11:21:19 -05:00
parent 906340a20c
commit 44007c5211
2 changed files with 15 additions and 1 deletions

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
rpcudp>=3.0.0

View File

@ -6,10 +6,23 @@ setup(
name="kademlia",
version=kademlia.__version__,
description="Kademlia is a distributed hash table for decentralized peer-to-peer computer networks.",
long_description=open("README.md").read(),
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"]
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",
]
)