-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
41 lines (37 loc) · 1.26 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["mctools"]
[project.scripts]
mcli="mctools.__main__:main"
[project.urls]
Documentation = "https://mctools.readthedocs.io/"
Repository = "https://github.com/Owen-Cochell/mctools"
Issues = "https://github.com/Owen-Cochell/mctools/issues"
[project]
name = "mctools"
version = "1.3.0"
description = "Python implementations of common Minecraft protocols."
readme = "README.md"
license = {"file" = "LICENSE"}
keywords = ["minecraft", "rcon", "query", "ping", "server list ping"]
optional-dependencies = {"color" = ["colorama"]}
authors = [
{ name = "Owen Cochell", email = "[email protected]" },
]
requires-python = ">=3.6, <4"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
]