forked from Bard-Gaming/Minecraft-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 757 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 757 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"]
build-backend = "setuptools.build_meta"
[project]
name = "minecraft-script"
version = "0.3.7"
description = "Minecraft Script programming language — compile .mcs files to Minecraft datapacks"
readme = "readme.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Joyful-Bard" }]
dependencies = ["pybars3>=0.9.7"]
[project.urls]
Homepage = "https://github.com/SpyC0der77/Minecraft-Script"
Repository = "https://github.com/SpyC0der77/Minecraft-Script"
[tool.setuptools.packages.find]
where = ["."]
include = ["minecraft_script*"]
[tool.setuptools.package-data]
minecraft_script = [
"config.json",
"versions/*.json",
"lexer/grammar/*.json",
"compiler/build_templates/**/*",
]