-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 994 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
31
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='rof-rcon-client',
version='0.2.0',
url='https://github.com/vaal-/rof-rcon-client',
license='BSD',
author='Vladimir Ulupov',
author_email='[email protected]',
description='RCon client for Rise of Flight dedicated server.',
# long_description=__doc__,
py_modules=['rof_rcon_client'],
install_requires=[
'six==1.8.0',
],
zip_safe=False,
include_package_data=True,
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Games/Entertainment :: Simulation',
'Topic :: Software Development :: Libraries',
],
keywords='rise of flight, rof, rcon, dserver'
)