forked from conqp/rcon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (27 loc) · 846 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (27 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /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="mail@richard-neumann.de",
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",
)