forked from bridgeduan/openttd-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1.19 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='libopenttd-python2',
version='1.0.0',
author="Steven 'Xaroth' Noorbergen",
author_email='[email protected]',
packages=['openttd'],
scripts=['ottd-client.py', 'ottd-gameinfo.py', 'ottd-rcon.py', 'ottd-serverstats.py', 'ottd_client_event.py', 'ottd_config.py'],
url='https://github.com/ropenttd/libopenttd-python',
license='https://www.gnu.org/licenses/gpl-3.0.en.html',
description='A small library for the Client Port interface for OpenTTD.',
long_description=open('README.txt').read(),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'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',
]
)