-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 1.08 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
[project]
name = "pytankbattle"
authors = [
{ name="Grillo del Mal", email="[email protected]" },
]
description = "A multiplayer battle royale tank game using the pygame engine"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: pygame"
]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/grillo-delmal/pytankbattle"
Issues = "https://github.com/grillo-delmal/pytankbattle/issues"
[project.gui-scripts]
pytankbattle = "pytankbattle:main"
[tool.setuptools.package-data]
"pytankbattle.assets" = ["*.png", "*.ttf"]
[build-system]
requires = [ "setuptools>=41", "wheel", "setuptools-git-versioning<2", ]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}