2021-10-09 14:02:23 +03:00
|
|
|
[tool.poetry]
|
|
|
|
|
name = "sync_ics2gcal"
|
2024-09-06 13:15:19 +03:00
|
|
|
version = "0.1.5"
|
2021-10-09 14:02:23 +03:00
|
|
|
description = "Sync ics file with Google calendar"
|
|
|
|
|
authors = ["Dmitry Belyaev <b4tm4n@mail.ru>"]
|
|
|
|
|
license = "MIT"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
homepage = "https://github.com/b4tman/sync_ics2gcal"
|
|
|
|
|
repository = "https://github.com/b4tman/sync_ics2gcal"
|
|
|
|
|
keywords = ["icalendar", "sync", "google", "calendar"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
'Operating System :: OS Independent',
|
2025-06-19 13:36:26 +03:00
|
|
|
'Programming Language :: Python :: 3.11',
|
2024-03-20 22:53:31 +03:00
|
|
|
'Programming Language :: Python :: 3.12',
|
2025-06-19 13:36:26 +03:00
|
|
|
'Programming Language :: Python :: 3.13',
|
2021-10-09 14:02:23 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2025-06-19 13:36:26 +03:00
|
|
|
python = "^3.11"
|
2026-01-31 23:04:54 +00:00
|
|
|
google-auth = "2.48.0"
|
|
|
|
|
google-api-python-client = "2.188.0"
|
2025-11-30 23:03:29 +00:00
|
|
|
icalendar = "6.3.2"
|
2025-04-01 00:25:55 +00:00
|
|
|
pytz = "2025.2"
|
2025-09-30 23:03:15 +00:00
|
|
|
PyYAML = "6.0.3"
|
2025-08-31 23:02:51 +00:00
|
|
|
fire = "0.7.1"
|
2021-10-09 14:02:23 +03:00
|
|
|
|
2023-08-20 23:03:27 +03:00
|
|
|
[tool.poetry.group.dev]
|
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.docs]
|
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2025-11-30 23:03:29 +00:00
|
|
|
pytest = ">=8.1,<10.0"
|
2025-06-19 13:36:26 +03:00
|
|
|
flake8 = ">=7.0.4,<8.0.0"
|
2026-01-31 23:04:54 +00:00
|
|
|
black = ">=25.0,<27.0"
|
2025-06-19 13:36:26 +03:00
|
|
|
mypy = ">=1.16.1"
|
|
|
|
|
types-python-dateutil = ">=2.9.0.20250516"
|
|
|
|
|
types-pytz = ">=2025.2.0.20250516"
|
|
|
|
|
types-PyYAML = "^6.0.12.20250516"
|
2025-07-01 02:24:08 +00:00
|
|
|
lxml = ">=5.4.0,<7.0.0"
|
2021-10-09 14:02:23 +03:00
|
|
|
|
2023-08-20 23:03:27 +03:00
|
|
|
[tool.poetry.group.docs.dependencies]
|
2025-06-19 13:36:26 +03:00
|
|
|
sphinx = ">=8.2,<9.0"
|
2026-01-31 23:04:54 +00:00
|
|
|
myst-parser = ">=4,<6"
|
2025-06-19 13:36:26 +03:00
|
|
|
sphinx-rtd-theme = ">=3.0.2,<4.0.0"
|
2023-08-20 23:03:27 +03:00
|
|
|
sphinx-copybutton = "^0.5.2"
|
2026-01-31 23:04:54 +00:00
|
|
|
sphinx-design = ">=0.6,<0.8"
|
2023-08-20 23:03:27 +03:00
|
|
|
|
2021-10-09 14:02:23 +03:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
|
sync-ics2gcal = "sync_ics2gcal.sync_calendar:main"
|
|
|
|
|
manage-ics2gcal = "sync_ics2gcal.manage_calendars:main"
|
|
|
|
|
|
2020-02-19 23:26:28 +03:00
|
|
|
[build-system]
|
2021-10-09 14:02:23 +03:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-06-03 23:39:11 +03:00
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
|
module = [
|
|
|
|
|
'icalendar',
|
|
|
|
|
'google.*',
|
2022-06-04 00:11:14 +03:00
|
|
|
'googleapiclient',
|
|
|
|
|
'fire'
|
2022-06-03 23:39:11 +03:00
|
|
|
]
|
|
|
|
|
ignore_missing_imports = true
|