mirror of
https://github.com/Dinnerbone/mcstatus.git
synced 2026-04-06 03:51:23 +08:00
58 lines
1.6 KiB
TOML
58 lines
1.6 KiB
TOML
[tool.poetry]
|
|
name = "mcstatus"
|
|
version = "8.0.0"
|
|
description = "A library to query Minecraft Servers for their status and capabilities."
|
|
authors = ["Nathan Adams <dinnerbone@dinnerbone.com>"]
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/Dinnerbone/mcstatus"
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Topic :: Games/Entertainment",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: System :: Monitoring",
|
|
]
|
|
packages = [
|
|
{ include = "mcstatus" },
|
|
{ include = "protocol", from = "mcstatus" },
|
|
{ include = "scripts", from = "mcstatus" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.7"
|
|
asyncio-dgram = "1.2.0"
|
|
click = "7.1.2"
|
|
dnspython = "2.1.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
coverage = "^6.1.1"
|
|
mock = "3.0.5"
|
|
pytest = "^6.2.5"
|
|
pytest-asyncio = "^0.16.0"
|
|
pytest-cov = "^3.0.0"
|
|
twine = "^3.5.0"
|
|
black = "^21.10b0"
|
|
pytype = {version = "^2021.12.8", platform = "linux", python = "<3.10"}
|
|
tox = "^3.24.5"
|
|
tox-poetry = "^0.4.1"
|
|
|
|
[tool.poetry.scripts]
|
|
mcstatus = 'mcstatus.scripts.mcstatus:cli'
|
|
|
|
[tool.black]
|
|
line-length = 127
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|