-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·36 lines (28 loc) · 918 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
32
33
34
35
36
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""Setup file for easy installation."""
from setuptools import setup
from openmoo2 import __version__
setup(
name='openmoo2',
description='Master of Orion II',
long_description='open source clone of Microprose game "Master of Orion II: Battle at Antares"',
url='http://openmoo2.org/',
download_url='https://github.com/scarabeusiv/openmoo2',
include_package_data=True,
version=__version__,
tests_require=[
"nose",
],
author='Petr Mika',
author_email='[email protected]',
maintainer='Tomáš Chvátal',
maintainer_email='[email protected]',
license='License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
platforms=['Linux'],
keywords=['Strategy', 'Game'],
packages=['openmoo2'],
entry_points={
'console_scripts': ['openmoo2 = openmoo2:main'],
},
)