-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 928 Bytes
/
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
[tool.poetry]
name = "calendar-cleanup"
version = "0.3.1"
description = "CLI utility to unclutter old calendar entries from WebDAV calendars."
homepage = "https://github.com/top-on/calendar-cleanup"
authors = ["top-on <[email protected]>"]
readme = "README.md"
packages = [{ include = "calendar_cleanup" }]
[tool.poetry.dependencies]
python = "^3.11"
webdav4 = "^0.9.8"
ical = "^6.1.0"
typer = "^0.9.0"
pydantic = "^2.5.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.27.1"
notebook = "^7.0.6"
ruff = "^0.1.6"
mypy = "^1.7.1"
pytest = "^7.4.3"
pre-commit = "^3.6.0"
[tool.poetry.scripts]
calendar-cleanup = "calendar_cleanup.cli:app"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
fix = true
line-length = 88
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"