From 44007c521167964b6498d8c4ee0033ef1f5cfa51 Mon Sep 17 00:00:00 2001 From: Brian Muller Date: Wed, 16 Jan 2019 11:21:19 -0500 Subject: [PATCH] added long description to setup --- requirements.txt | 1 + setup.py | 15 ++++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..da3cd6f --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +rpcudp>=3.0.0 diff --git a/setup.py b/setup.py index f62a11c..4102e1c 100755 --- a/setup.py +++ b/setup.py @@ -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", + ] )