-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·47 lines (45 loc) · 1.86 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
setup(
name='zanthor',
version="1.2.4",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Topic :: Software Development :: Libraries :: pygame',
'Topic :: Games/Entertainment :: Arcade',
"Topic :: Games/Entertainment :: Real Time Strategy",
],
license='GPL',
author="Aaron, Phil, Rene, Tim",
author_email="[email protected]",
maintainer='Rene Dudfield',
maintainer_email='[email protected]',
description="Zanthor is a game where you play an evil robot castle which is powered by steam. @zanthorgame #python #pygame",
url="http://github.com/pygame/zanthor/",
include_package_data=True,
long_description='Zanthor is a game where you play an evil robot castle which is powered by steam.',
package_dir={'zanthor': 'zanthor'},
packages=find_packages(),
install_requires=['pygame'],
entry_points={
'console_scripts': [
'zanthor=zanthor.main:main',
],
},
)