-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (91 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
93 lines (91 loc) · 2.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[project]
name = "globaltags-server"
version = "1.0"
description = "The server backend for the GlobalTags Vencord Plugin"
authors = [
{name = "Reclipse"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.13,<3.14"
dependencies = [
"annotated-types>=0.7.0",
"anyio>=4.8.0",
"build>=1.2.2.post1",
"CacheControl>=0.14.2",
"certifi>=2025.1.31",
"charset-normalizer>=3.4.1",
"cleo>=2.1.0",
"click>=8.1.8",
"colorama>=0.4.6",
"colored>=2.3.0",
"crashtest>=0.4.1",
"distlib>=0.3.9",
"dnspython>=2.7.0",
"dulwich>=0.22.8",
"email_validator>=2.2.0",
"fastapi>=0.115.6",
"fastapi-cli>=0.0.7",
"fastjsonschema>=2.21.1",
"filelock>=3.18.0",
"findpython>=0.6.3",
"greenlet>=3.1.1",
"h11>=0.14.0",
"httpcore>=1.0.7",
"httptools>=0.6.4",
"httpx>=0.28.1",
"idna>=3.10",
"installer>=0.7.0",
"jaraco.classes>=3.4.0",
"jaraco.context>=6.0.1",
"jaraco.functools>=4.1.0",
"Jinja2>=3.1.6",
"keyring>=25.6.0",
"markdown-it-py>=3.0.0",
"MarkupSafe>=3.0.2",
"mdurl>=0.1.2",
"more-itertools>=10.6.0",
"msgpack>=1.1.0",
"packaging>=24.2",
"pbs-installer>=2025.4.9",
"pkginfo>=1.12.1.2",
"platformdirs>=4.3.7",
"poetry>=2.1.2",
"poetry-core>=2.1.2",
"pydantic>=2.10.5",
"pydantic_core>=2.27.2",
"Pygments>=2.19.1",
"pyproject_hooks>=1.2.0",
"PySide6>=6.9.0",
"PySide6_Addons>=6.9.0",
"PySide6_Essentials>=6.9.0",
"python-dotenv>=1.0.1",
"python-multipart>=0.0.20",
"pywin32-ctypes>=0.2.3",
"PyYAML>=6.0.2",
"RapidFuzz>=3.13.0",
"requests>=2.32.3",
"requests-toolbelt>=1.0.0",
"rich>=13.9.4",
"rich-toolkit>=0.13.2",
"rites>=0.4.1",
"shellingham>=1.5.4",
"shiboken6>=6.9.0",
"sniffio>=1.3.1",
"SQLAlchemy>=2.0.37",
"starlette>=0.41.3",
"tomlkit>=0.13.2",
"trove-classifiers>=2025.4.11.15",
"typer>=0.15.2",
"typing_extensions>=4.12.2",
"urllib3>=2.4.0",
"uvicorn>=0.34.0",
"virtualenv>=20.30.0",
"watchfiles>=1.0.4",
"websockets>=15.0.1",
"zstandard>=0.23.0",
"psutil (>=7.0.0,<8.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"