-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.16 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "calmerge"
version = "0.1.0"
description = ""
authors = ["Jake Howard"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.13"
aiohttp = "3.11.11"
pydantic = "2.10.5"
icalendar = "6.1.1"
aiocache = "0.12.3"
aiohttp-jinja2 = "1.6"
aiohttp-remotes = "1.3.0"
mergecal = "0.3.14"
[tool.poetry.group.dev.dependencies]
ruff = "0.9.2"
pytest = "8.3.4"
pytest-aiohttp = "1.0.5"
pytest-asyncio = "0.25.2"
pytest-cov = "6.0.0"
mypy = "1.14.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
calmerge = "calmerge.__main__:main"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "N", "B", "A", "C4", "T20"]
ignore = ["E501"]
[tool.ruff.lint.extend-per-file-ignores]
"__main__.py" = ["T201"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.mypy]
warn_unused_ignores = true
warn_return_any = true
show_error_codes = true
strict_optional = true
implicit_optional = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
check_untyped_defs = true
ignore_missing_imports = true