-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 906 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 906 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "packscript"
dynamic = ["version"]
description = "A datapack compiler for Minecraft"
authors = [{name = "Slackow"}]
license = { file = "LICENSE.txt" }
requires-python = ">=3.12"
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ["packscript", "mcfunction", "datapack", "pack.mcmeta", "nbt", "templating", "language"]
[project.urls]
Repository = "https://github.com/Slackow/PackScript.git"
Issues = "https://github.com/Slackow/PackScript/issues"
Download = "https://github.com/Slackow/PackScript/releases"
Changelog = "https://github.com/Slackow/PackScript/releases"
[project.scripts]
packscript = "packscript:main"
[tool.setuptools]
py-modules = ["packscript"]
packages.find.exclude = ["test", "test.*"]
[tool.setuptools.dynamic]
version = {attr = "packscript.__version__"}