21 lines
423 B
TOML
21 lines
423 B
TOML
[tool.poetry]
|
|
name = "export-events"
|
|
version = "0.1.0"
|
|
description = "An App to export Codam events to ics file."
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
icalendar = "^6.0.0"
|
|
pyyaml = "^6.0.2"
|
|
requests = "^2.32.3"
|
|
tqdm = "^4.66.5"
|
|
pygments = "^2.18.0"
|
|
pytz = "^2025.2"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|