-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
62 lines (58 loc) · 1.84 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
[build-system]
requires = ["uv-build~=0.11.14"]
build-backend = "uv_build"
[project]
name = "ministatus"
version = "1.0.7"
description = "A Discord bot for managing game server status embeds."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "thegamecracks" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
# We use these frameworks, but we aren't extensions for them
# "Framework :: AsyncIO",
# "Framework :: Matplotlib",
# "Framework :: Pydantic",
# "Framework :: Pydantic :: 2",
# "Framework :: aiohttp",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: SQL",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Internet",
"Topic :: Internet :: Name Service (DNS)",
"Typing :: Typed",
]
dependencies = [
"asqlite~=2.0",
"click~=8.3",
"discord.py~=2.7",
"dnspython~=2.8",
"ipaddress~=1.0",
"little-a2s~=0.7.2",
"matplotlib~=3.10",
"opengsq~=3.6",
"platformdirs~=4.5",
"pydantic~=2.12",
]
[dependency-groups]
dev = ["jishaku~=2.6"]
[project.scripts]
ministatus = "ministatus.__main__:main"
[project.urls]
# https://packaging.python.org/en/latest/specifications/well-known-project-urls/#well-known-labels
Homepage = "https://github.com/thegamecracks/ministatus"
GitHub = "https://github.com/thegamecracks/ministatus"
Issues = "https://github.com/thegamecracks/ministatus/issues"