all repos — mycal @ cecb6a1afa9f628ee606a8bd2cc9cb6914fa145a

private calendar anonymiser

pyproject.toml (view raw)

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
[project]
name = "mycal"
version = "0.1.0"
license = "MIT"
description = "Personal calendar transformation tool"
authors = [{ name = "Alan Pearce", email = "alan@alanpearce.eu" }]
requires-python = ">=3.12"
dependencies = [
    "quart>=0.2.0",
    "uvicorn[standard]>=0.34.3",
    "icalendar>=6.3.1",
    "icalendar-compatibility>=0.1.4",
    "toml-dataclass>=0.1.0",
    "aiohttp>=3.9.0",
]

[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "mycal"
version = "0.1.0"

[tool.basedpyright]
exclude = [
    "**/__pycache__",
]
reportMissingImports = "error"
reportMissingTypeStubs = false

pythonVersion = "3.13"
pythonPlatform = "Linux"