-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.06 KB
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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "easycode-infinite"
version = "1.0.8"
description = "A simple GUI addon for Pygame, Pyglet, and Arcade"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pygame-ce",
"pyglet>=2.0",
"arcade>=3.0"
]
[project.urls]
Homepage = "https://github.com/Pythonexplorer48/Easycode-infinite_Project"
Documentation = "https://github.com/Pythonexplorer48/Easycode-infinite_Project/wiki"
Repository = "https://github.com/Pythonexplorer48/Easycode-infinite_Project"
Issues = "https://github.com/Pythonexplorer48/Easycode-infinite_Project/issues"
[tool.hatch.build.targets.wheel]
include = ["easycode_addons.py"]
[tool.hatch.build.targets.wheel.sources]
"easycode_addons.py" = "easycode.py"
[tool.hatch.build]
include = [
"easycode_addons.py",
"LICENSE",
"README.md",
"CODE_OF_CONDUCT.md",
"SECURITY.md",
"CONTRIBUTING.md"
]