-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (60 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
63 lines (60 loc) · 1.55 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
[project]
name = "motdtracker"
version = "1.5.1"
description = "Minecraft 多节点服务器监控系统,提供实时状态追踪、玩家会话管理、延迟统计分析与 Prometheus 集成"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.13"
authors = [
{name = "PoiCraft", email = ""}
]
maintainers = [
{name = "PoiCraft"}
]
keywords = [
"minecraft",
"server",
"monitor",
"motd",
"tracker",
"prometheus",
"flask",
"websocket",
"real-time"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment",
"Topic :: System :: Monitoring"
]
dependencies = [
"flask>=3.0.0",
"flask-cors>=5.0.0",
"mcstatus>=11.0.0",
"apscheduler>=3.10.0",
"flask-socketio>=5.3.0",
"python-socketio>=5.11.0",
"flask-restx>=0.5.0",
"psycopg2-binary>=2.9.0",
"anybadge>=1.14.0",
"requests>=2.32.5",
"graphene>=3.4.0",
]
[project.urls]
Homepage = "https://github.com/PoiCraft/MotdTracker"
Repository = "https://github.com/PoiCraft/MotdTracker.git"
Documentation = "https://github.com/PoiCraft/MotdTracker#readme"
Issues = "https://github.com/PoiCraft/MotdTracker/issues"
[project.scripts]
motdtracker = "main:main"
[dependency-groups]
dev = [
"pillow>=12.1.0",
]