forked from sleepy-project/sleepy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 959 Bytes
/
pyproject.toml
File metadata and controls
38 lines (36 loc) · 959 Bytes
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
[project]
name = "sleepy"
version = "5.2"
description = "A Flask application to see if you're online or not."
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
# Web server
"flask>=3.1.1",
"flask-cors>=6.0.1",
"pyopenssl>=25.1.0",
# Config parsing
"pyyaml>=6.0.2",
"toml>=0.10.2",
"python-dotenv>=1.1.1",
"pydantic>=2.11.7",
# Data storing
"flask-sqlalchemy>=3.1.1",
"objtyping>=0.5.4",
# Timezone parsing
"pytz>=2025.2",
# Colorful log
"colorama>=0.4.6",
# Scheduled tasks
"schedule>=1.2.2",
]
[project.urls]
homepage = "https://sleepy.wss.moe"
documentation = "https://sleepy.wss.moe"
github = "https://github.com/sleepy-project/sleepy"
releasenotes = "https://github.com/sleepy-project/sleepy/releases"
issues = "https://github.com/sleepy-project/sleepy/issues"
[tool.sleepy-plugin]
version = [5, 2, 0]
version-str = "5.2-release-20251214"