-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.03 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fxtumblr"
version = "2.0.0"
description = "Tumblr embed wrapper"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiofiles",
"httpx",
"redis",
"frozendict",
"emoji",
"python-dateutil",
"nh3",
"markupsafe",
"pydantic",
]
[project.optional-dependencies]
embed-server = [
"Quart",
]
render-playwright = [
"playwright",
"jinja2",
]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "ASYNC", "A", "B", "D", "F", "S", "I", "W"]
ignore = ["D212", "D203", "D205", "D202", "ASYNC109", "S101"]
[dependency-groups]
test = [
"pytest",
"pytest-asyncio",
"pytest-dotenv",
"pytest-httpserver",
"pytest-cov",
"fakeredis",
]
typing = [
"ty",
"types-frozendict",
"types-emoji",
"types-python-dateutil",
"types-redis",
"types-aiofiles",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
log_cli = true
log_cli_level = "INFO"
[tool.setuptools]
packages = ["fxtumblr", "fxtumblr_render"]