From 8eb8a6f9ea5bbfa6e64a0045474f3c3fa60cd119 Mon Sep 17 00:00:00 2001 From: Oliver Ainsworth Date: Sun, 10 Sep 2017 21:32:01 +0100 Subject: [PATCH] Update package metadata --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index afa82e5..c82fd8d 100644 --- a/setup.py +++ b/setup.py @@ -30,11 +30,12 @@ def install_requires(): setuptools.setup( name="python-valve", version="0.2.0", - description=("Small library implementing " - "various parts of Steam's public interfaces"), + description=("Python implemntation RCON, A2S, VDF, the Steam Web " + "API and various other Valve products and services.") long_description=readme(), author="Oliver Ainsworth", author_email="ottajay@googlemail.com", + url="https://github.com/Holiverh/python-valve", packages=setuptools.find_packages(), install_requires=install_requires(), extras_require={ @@ -55,8 +56,9 @@ def install_requires(): }, license="MIT License", classifiers=[ - "License :: OSI Approved :: MIT License", "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", @@ -64,5 +66,6 @@ def install_requires(): "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", + "Topic :: Games/Entertainment", ], )