-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.66 KB
/
pyproject.toml
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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "minecraft-essentials"
description = "The python version of Minecraft essentials"
keywords = ["modpack-launchers", "minecraft", "library", "python"]
authors = [{ name = "Eveeifyeve", email = "[email protected]" }]
maintainers = [{ name = "Eveeifyeve", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD-3-Clause License",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
Homepage = "https://minecraft-essentials.github.io"
Changelog = "https://github.com/minecraft-essentials/Python/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/minecraft-essentials/Python/issues"
Source = "https://github.com/minecraft-essentials/Python"
[tool.ruff]
line-length = 120
target-version = "py37"
[tool.ruff.lint.isort]
known-first-party = ["minecraft_essentials"]
known-third-party = ["hypothesis", "pytest"]
[tool.ruff.format]
skip-magic-trailing-comma = false
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"