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.
21 lines
602 B
21 lines
602 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'],
|
|
scripts=['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'
|
|
)
|
|
|