forked from Xaroth/libottdadmin2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.2 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='libottdadmin2',
version='0.0.1',
author="Steven 'Xaroth' Noorbergen",
author_email='[email protected]',
packages=['libottdadmin2', 'libottdadmin2.packets'],
scripts=['bin/openttd-admin-rcon.py', 'bin/openttd-admin-test-json.py', 'bin/openttd-admin.py'],
url='https://github.com/xaroth/libottdadmin2',
license='http://creativecommons.org/licenses/by-nc-sa/3.0/',
description='A small library for the Admin Port interface for OpenTTD.',
long_description=open('README.md').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Common Public License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Games/Entertainment',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
)