forked from skmendez/aiorcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 986 Bytes
/
setup.py
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
30
from setuptools import setup
from aiorcon import __version__
with open('README.rst') as f:
readme = f.read()
setup(
name='aiorcon',
version=__version__,
packages=['aiorcon'],
url='https://github.com/Sebass13/aiorcon',
license='GPL-3.0',
author='Sebastian',
author_email='[email protected]',
description='An asynchronous interface for the Source RCON Protocol.',
classifiers=(
'Development Status :: 4 - Beta',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Games/Entertainment'
),
long_description=readme,
)