Browse Source

Create setup file

async v1.0.0
Gabriel Huber 5 years ago
parent
commit
2fbd78ad0b
  1. 4
      .gitignore
  2. 2
      README.md
  3. 27
      setup.py

4
.gitignore

@ -1 +1,5 @@
__pycache__
build
dist
*.egg-info

2
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

27
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="[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.5"
)
Loading…
Cancel
Save