-
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) · 746 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 746 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
[tool.poetry]
name = "pymcfunction"
version = "0.1.6"
description = "PyMCFunction is a tool to write Minecraft datapacks in Python."
authors = ["PaddeCraft <paddecraft@gmail.com>"]
include = [
"LICENSE",
]
readme = "README.md"
repository = "https://github.com/PaddeCraft/PyMCFunction"
keywords = ["python", "minecraft", "toml", "cli"]
[tool.poetry.scripts]
pymcfunction = "pymcfunction.cli:app"
pyfunction = "pymcfunction.cli:app"
pmf = "pymcfunction.cli:app"
[tool.poetry.dependencies]
python = "^3.10"
typer = "^0.6.1"
toml = "^0.10.2"
[tool.poetry.dev-dependencies]
black = {version = "^22.10.0", allow-prereleases = true}
requests = "^2.28.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"