-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.57 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
import os
import glob
from distutils.core import setup
if os.name == "nt":
pass
setup(
name="invasores",
description="Very simple game written in Python.",
version="0.9.10b",
author="Nilo Menezes",
author_email="[email protected]",
url="https://github.com/lskbr/invasores",
requires=["pygame(>=1.9)"],
windows=[{"script": "invasores.py", "icon_resources": [(1, "pygame.ico")]}],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"Environment :: Win32 (MS Windows) ",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Natural Language :: French",
"Natural Language :: Spanish",
"Natural Language :: Portuguese (Brazilian)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: BSD :: OpenBSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment :: Arcade",
],
data_files=[
("", glob.glob("*.png")),
("", glob.glob("*.bmp")),
("fonts", glob.glob("*.ttf")),
("sons", glob.glob("sons/*.wav")),
("lang", glob.glob("lang/*.lang")),
("licenca", glob.glob("licenca/*.txt")),
],
)