-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (77 loc) · 2 KB
/
pyproject.toml
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Blaze-Sudio"
version = "3.1.0"
description = "This is a really cool game/physics/application engine written in pygame!"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Tsunami014", email = "tsunami014@duck.com"}
]
maintainers = [
{name = "Tsunami014", email = "tsunami014@duck.com"}
]
keywords = ["Python", "games", "engine"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows"
]
# Development Status options:
# 1 - Planning
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
# 6 - Mature
# 7 - Inactive
dependencies = []
requires-python = ">= 3.10"
[project.urls]
Homepage = "https://github.com/Tsunami014/Blaze-Sudio"
Download = "https://github.com/Tsunami014/Blaze-Sudio/archive/refs/tags/v3.1.0.tar.gz"
Documentation = "https://tsunami014.gitbook.io/blaze-sudios/"
Repository = "https://github.com/Tsunami014/Blaze-Sudio"
Issues = "https://github.com/Tsunami014/Blaze-Sudio/issues"
[project.scripts]
BlazeSudio = "BlazeSudio:main"
[project.optional-dependencies]
graphics = [
"pygame-ce",
]
image = [
"noise",
"Pillow",
"scikit-image",
# Maybe remove the below
"matplotlib"
]
collisions = [
"shapely",
]
game = [
"Blaze-Sudio[graphics]",
"Blaze-Sudio[collisions]",
"scikit-image",
"pyperclip",
]
all = [
"Blaze-Sudio[image]",
"Blaze-Sudio[collisions]",
"Blaze-Sudio[game]",
]
[tool.setuptools.packages.find]
exclude = ["BlazeSudio.collisions.lib", "BlazeSudio.debug"]
[tool.setuptools.package-data]
"BlazeSudio" = [
"elementGen/nodes/*.py",
"ldtk/internal-icons.png",
"graphics/defaultTheme/*",
"graphics/GUI/textboxify/data/**"
]
"BlazeSudio.collisions" = ["**/*.so", "**/*.pyd"]