forked from horazont/python3-openttd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 845 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
#!/usr/bin/env python3
from distutils.core import setup
with open("README.rst", "r") as f:
long_description = f.read()
setup(name="python3-openttd",
version="0.1",
description="OpenTTD administration client library",
long_description=long_description,
author="Jonas Wielicki",
author_email="[email protected]",
url="https://github.com/horazont/python3-openttd",
packages=["openttd"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Topic :: Games/Entertainment :: Simulation",
],
)