-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (47 loc) · 2.01 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""
Setup the package.
"""
from setuptools import setup, find_packages
with open("README.md", mode='r', encoding="utf-8") as readme:
project_description = readme.read()
setup(
name="star-slayer",
packages=find_packages(),
package_data={
"starslayer" : ["json/actions/*.json",
"json/profiles/*.json",
"json/scores/*.json",
"textures/icon/*.gif",
"textures/player/star_slayer/*.customppm",
"textures/player/star_slayer_damaged/*.customppm",
"textures/player/bilby_tanka/*.customppm",
"textures/player/bilby_tanka_damaged/*.customppm",
"textures/player/viper_dodger/*.customppm",
"textures/player/viper_dodger_damaged/*.customppm",
"textures/player/shield/*.customppm",
"textures/player/cannon/*.customppm",
"textures/drops/med_kit/*.customppm",
"textures/drops/radial_bomb/*.customppm",
"textures/drops/spiral_bomb/*.customppm",
"textures/enemies/common_a/*.customppm",
"textures/enemies/common_b/*.customppm",
"textures/enemies/swift/*.customppm",
"sfx/time/*.wav",
"sfx/cheats/*.wav",
"sfx/settings/*.wav",
"sfx/gameplay/*.wav"]
},
version="0.2.2-alpha",
url="https://github.com/NLGS2907/star-slayer",
author="NLGS",
author_email="[email protected]",
license="MIT",
description="Little game made with Gamelib",
long_description=project_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10"
]
)