-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (68 loc) · 2.02 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "levistone"
authors = [
{ name = "Vincent Wu", email = "magicdroidx@gmail.com" }
]
description = "Endstone offers a plugin API for Bedrock Dedicated Servers, supporting both Python and C++."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["plugin", "python", "minecraft", "bedrock"]
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python",
"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",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"aiohttp",
"asyncio",
"click",
"importlib-metadata",
"importlib-resources",
"lazy-loader",
"numpy",
"packaging",
"pkginfo",
"psutil",
"pyyaml",
"requests",
"rich",
"tomlkit",
"typing-extensions",
]
dynamic = ["version"]
[project.urls]
Changelog = "https://endstone.readthedocs.io/en/latest/changelog"
Discussions = "https://github.com/orgs/EndstoneMC/discussions"
Documentation = "https://endstone.readthedocs.io"
Homepage = "https://github.com/EndstoneMC/endstone"
Issues = "https://github.com/EndstoneMC/endstone/issues"
[tool.setuptools]
package-dir = { "" = "bin/EndstoneRuntime" }
[tool.setuptools.packages.find]
where = ["bin/EndstoneRuntime"]
[tool.setuptools.data-files]
"" = [
"bin/EndstoneRuntime/*.dll",
"bin/EndstoneRuntime/*.pdb",
"bin/EndstoneRuntime/*.json",
]
[tool.setuptools.package-data]
"*" = ["*"]
[tool.setuptools_scm]
write_to = "endstone/endstone/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
scm.git.describe_command = "git describe --tags --long --match *[0-9]*"
[tool.ruff]
line-length = 120
lint.extend-select = ["I"]