-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.36 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
45
46
47
48
49
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "endstone-example"
dynamic = ["version"]
dependencies = ["typing_extensions>=4.0"]
authors = [
{ name = "Endstone Developers", email = "hello@endstone.dev" },
]
description = "Python example plugin for Endstone servers"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["endstone", "plugin"]
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
dev = ["endstone", "ruff"]
[project.urls]
Homepage = "https://github.com/EndstoneMC/python-example-plugin"
Documentation = "https://endstone.dev/latest/"
Changelog = "https://github.com/EndstoneMC/python-example-plugin/blob/main/CHANGELOG.md"
Issues = "https://github.com/EndstoneMC/python-example-plugin/issues"
[project.entry-points."endstone"]
example = "endstone_example:ExamplePlugin"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["I", "E", "F"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/endstone_example/_version.py"