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.
 
 

22 lines
659 B

#! /usr/bin/env python
"""Installation script."""
from setuptools import setup
setup(
name='rcon',
version_format='{tag}',
setup_requires=['setuptools-git-version'],
author='Richard Neumann',
author_email='[email protected]',
python_requires='>=3.8',
packages=['rcon'],
extras_require={'GUI': ['pygtk']},
scripts=['files/rcongui', 'files/rconclt', 'files/rconshell'],
url='https://github.com/conqp/rcon',
license='GPLv3',
description='A RCON client library library.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
keywords='python rcon client'
)