forked from bsubei/pysrcds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.34 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
from setuptools import setup
setup(
name='pysrcds',
version='0.2.0.dev',
description='Python library for interacting with Source engine dedicated'
' servers',
author='Peter Rowlands',
author_email='[email protected]',
url='https://github.com/pmrowla/pysrcds',
packages=['srcds', 'srcds/events'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Games/Entertainment :: First Person Shooters',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=['future'],
long_description='''
=======
pysrcds
=======
Python library for interacting with Source engine dedicated servers.
pysrcds provides the functionality to communicate with a dedicated server via
RCON and also provides the ability to parse Source engine logs. There are also
some utility classes that may be useful for developing other Source related
functionality.
License
=======
pysrcds is distributed under the MIT license.
''',
)