mirror of https://github.com/conqp/rcon
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.
29 lines
846 B
29 lines
846 B
#! /usr/bin/env python
|
|
"""Installation script."""
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="rcon",
|
|
use_scm_version=True,
|
|
setup_requires=["setuptools_scm"],
|
|
author="Richard Neumann",
|
|
author_email="[email protected]",
|
|
python_requires=">=3.10",
|
|
packages=["rcon", "rcon.battleye", "rcon.source"],
|
|
extras_require={"GUI": ["pygobject", "pygtk"]},
|
|
tests_require=["pytest"],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"rcongui = rcon.gui:main",
|
|
"rconclt = rcon.rconclt:main",
|
|
"rconshell = rcon.rconshell:main",
|
|
],
|
|
},
|
|
url="https://github.com/conqp/rcon",
|
|
license="GPLv3",
|
|
description="An RCON client library.",
|
|
long_description=open("README.md").read(),
|
|
long_description_content_type="text/markdown",
|
|
keywords="python rcon client",
|
|
)
|
|
|