-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 851 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
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zoterm"
version = "0.1.0"
description = "The text-based user interface(TUI) of Zotero"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx",
"pydantic",
"pydantic-settings",
"textual",
]
[project.scripts]
zoterm = "zoterm.app:main"
[dependency-groups]
dev = [
"mypy>=1.20.0",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"respx>=0.22.0",
"ruff>=0.15.8",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
[tool.mypy]
python_version = "3.12"
files = ["src", "tests"]
warn_unused_ignores = true
warn_redundant_casts = true
warn_return_any = true
check_untyped_defs = true