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.
32 lines
845 B
32 lines
845 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.8',
|
|
packages=[
|
|
'rcon',
|
|
'rcon.battleye',
|
|
'rcon.source'
|
|
],
|
|
extras_require={'GUI': ['pygobject', 'pygtk']},
|
|
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'
|
|
)
|
|
|