-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (42 loc) · 1.21 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
42
[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.9.dev0"
description = "A cat living in SCAICT Discord server."
readme.file = "README.md"
readme.content-type = "text/markdown"
requires-python = "== 3.11.*"
license.file = "LICENSE"
# Use Git committer/author name here
authors = [
{ name = "ChiuDeYuan" },
{ name = "Each Chen" },
{ name = "Elvis Mao" },
{ name = "os24" },
{ name = "Winston Sung" },
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
urls.repository = "https://github.com/SCAICT/SCAICT-uwu.git"
urls.issues = "https://github.com/SCAICT/SCAICT-uwu/issues"
# Lock file: requirements.txt
dependencies = [
"flask == 3.0.3",
"mysql-connector-python == 8.4.0",
"py-cord == 2.6.0",
"python-dotenv == 1.0.1",
"requests == 2.32.3",
]
# Lock file: requirements_dev.txt
optional-dependencies.dev = [
"black == 24.8.0",
"pylint == 3.2.6",
"pytest == 8.3.2",
]