diff --git a/.gitignore b/.gitignore index bee8a64..e32c3ef 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ __pycache__ +build +dist +*.egg-info + diff --git a/README.md b/README.md index 3633c3c..2a41cb2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Library to query Source and GoldSource servers. Rewrite of the ## Requirements -Just Python 3.5+ +Python >=3.5, no external dependencies ## API diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..07df926 --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 + +import setuptools + +with open("README.md", "r") as readme: + long_description = readme.read() + +setuptools.setup( + name="python-a2s", + version="1.0.0", + author="Gabriel Huber", + author_email="mail@gabrielhuber.at", + description="Query Source and GoldSource servers for name, map, players and more.", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/Yepoleb/python-a2s", + packages=["a2s"], + license="MIT License", + classifiers=[ + "Development Status :: 4 - Beta", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Operating System :: OS Independent", + "Topic :: Games/Entertainment" + ], + python_requires=">=3.5" +)