Files

29 lines
716 B
TOML
Raw Permalink Normal View History

2025-04-06 19:06:42 -07:00
[project]
2025-04-06 23:44:42 -07:00
name = "events-plus"
2025-04-06 19:06:42 -07:00
version = "0.1.0"
description = ""
authors = [
{name = "Your Name",email = "you@example.com"}
]
readme = "README.md"
2025-04-06 23:44:42 -07:00
requires-python = ">=3.9"
2025-04-06 19:06:42 -07:00
dependencies = [
"icalendar (>=6.1.3,<7.0.0)",
"datetime (>=5.5,<6.0)",
2025-04-06 23:44:42 -07:00
"requests (>=2.32.3,<3.0.0)",
2025-04-10 05:09:57 -07:00
"aiohttp (>=3.11.16,<4.0.0)",
"google-api-python-client (>=2.166.0,<3.0.0)",
"google-auth-httplib2 (>=0.2.0,<0.3.0)",
"google-auth-oauthlib (>=1.2.1,<2.0.0)",
"jsondiff (>=2.2.1,<3.0.0)"
2025-04-06 19:06:42 -07:00
]
2025-04-06 23:44:42 -07:00
[project.scripts]
generate-ics = 'events_plus.console:generate_all'
2025-04-10 05:09:57 -07:00
clear-gcals = 'events_plus.console:clear_all'
2025-04-06 23:44:42 -07:00
2025-04-06 19:06:42 -07:00
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"