-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
56 lines (48 loc) · 1.34 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
[project]
name = "Qzone3TG"
version = "0.9.12.dev2"
description = "Forward Qzone feeds to telegram."
authors = [{ name = "aioqzone" }]
maintainers = [
{ name = "JamzumSum", email = "22952836+JamzumSum@users.noreply.github.com" },
]
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }
requires-python = "~=3.14.0"
dependencies = [
"aioqzone>=1.9.6.dev2",
"aioqzone-feed>=1.3.2.dev1,<2.0.0",
"qzemoji>=7.0.0",
"aiogram[proxy]>=3.23.0,<4.0.0",
"apscheduler>=3.10.4,<4.0.0",
]
[project.urls]
"Repository" = "https://github.com/aioqzone/Qzone2TG"
"Documentation" = "https://aioqzone.github.io/Qzone2TG"
[project.optional-dependencies]
slide-captcha = ["aioqzone-feed[slide-captcha]"]
[dependency-groups]
dev = ["pre-commit", "ruff"]
test = ["pytest~=9.0", "pytest-asyncio~=1.3"]
doc = [
"Sphinx>=8.0.2,<9.0.0",
"autodoc-pydantic",
"sphinx-autodoc-typehints>=2.2.0,<3.0.0",
"furo>=2024.8.6",
"sphinx-design>=0.6.1,<1.0.0",
]
[tool.uv.sources]
aioqzone-feed = { index = "aioqzone-index" }
[[tool.uv.index]]
name = "aioqzone-index"
url = "https://aioqzone.github.io/aioqzone-index/simple/"
[build-system]
requires = ["uv_build"]
build-backend = "uv_build"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
log_cli_level = 'WARNING'
pythonpath = 'src'
log_cli = true
[tool.ruff]
line-length = 99