-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (64 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
66 lines (64 loc) · 1.78 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
[project]
# Only use lowercase letters and hyphens here
# @see https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#name
# @see https://packaging.python.org/en/latest/specifications/name-normalization/
name = "scaict-uwu"
# PEP 440
# @see https://sethmlarson.dev/pep-440
version = "0.1.14"
description = "A cat living in SCAICT Discord server."
readme.file = "README.md"
readme.content-type = "text/markdown"
requires-python = ">=3.11, <3.13"
license = "Apache-2.0"
license-files = [
"LICENSE",
]
# Use Git committer/author name here
authors = [
{ name = "ChiuDeYuan" },
{ name = "Each Chen" },
{ name = "Elvis Mao" },
{ name = "g4o2" },
{ name = "Larryeng" },
{ name = "osga24" },
{ name = "Winston Sung" },
{ name = "YuevUwU" },
{ name = "伊藤蒼太" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Flask",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Natural Language :: Chinese (Traditional)",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: SQL",
]
urls.repository = "https://github.com/SCAICT/SCAICT-uwu.git"
urls.issues = "https://github.com/SCAICT/SCAICT-uwu/issues"
dependencies = [
"flask == 3.1.2",
"mysql-connector-python == 9.5.0",
"py-cord == 2.6.1",
"python-dotenv == 1.2.1",
"requests == 2.32.5",
]
[dependency-groups]
dev = [
"black == 25.12.0",
"pylint == 4.0.4",
"pytest == 9.0.2",
]
[tool.uv]
package = false