-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
32 lines (27 loc) · 896 Bytes
/
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
[project]
authors = [{ name = "Sch8ill", email = "[email protected]" },
]
dynamic = ["version"]
classifiers = ["Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["dnspython>=2.2.1"]
description = "A lightweight Minecraft client for querying the status data of a Minecraft server."
name = "mcclient-lib"
readme = "README.md"
requires-python = ">=3.7"
[project.urls]
"Bug Tracker" = "https://github.com/sch8ill/mcclient-lib/issues"
"Homepage" = "https://github.com/sch8ill/mcclient-lib"
[tool.pytest.ini_options]
addopts = "--cov=mcclient --ignore=examples"
minversion = "6.0"
[tool.mypy]
check_untyped_defs = true
exclude = ["tests"]
[tool.setuptools_scm]
version_scheme = "post-release"