You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
806 B

#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="python-a2s",
version="1.4.1",
author="Gabriel Huber",
author_email="[email protected]",
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.9"
)