-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mcserverwrapper"
version = "0.0.4rc1"
authors = [
{ name="Ableytner", email="ableytner@gmx.at" },
]
description = "A wrapper for minecraft servers, usable as a python package or from the console."
readme = "README.md"
license = "GPL-3.0"
license-files = [
"LICENSE",
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"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",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"mcstatus==12.0.5",
"pexpect==4.9.0",
]
[project.optional-dependencies]
dev = [
"bs4==0.0.2",
"javascript==1!1.2.6",
"pre-commit==4.3.0",
"pylint==3.3.9",
"pytest==8.4.2",
"requests==2.32.5",
]
[project.urls]
Repository = "https://github.com/mcserver-tools/mcserverwrapper"
"Bug Tracker" = "https://github.com/mcserver-tools/mcserverwrapper/issues"
[tool.ruff.lint]
select = ["TID252"]
[tool.ruff.lint.flake8-tidy-imports]
# Disallow all relative imports.
ban-relative-imports = "all"
[tool.isort]
lines_after_imports=1
[tool.mypy]
strict = false
[[tool.mypy.overrides]]
module = ["dill.*"]
ignore_missing_imports = true