1
0
mirror of https://github.com/b4tman/sync_ics2gcal synced 2026-05-18 19:16:13 +03:00
Files
sync_ics2gcal/pyproject.toml
T

68 lines
1.6 KiB
TOML
Raw Normal View History

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',
'Programming Language :: Python :: 3.9',
2023-08-20 23:03:27 +03:00
'Programming Language :: Python :: 3.10',
2024-03-20 22:53:31 +03:00
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
2021-10-09 14:02:23 +03:00
]
[tool.poetry.dependencies]
2024-03-20 22:53:31 +03:00
python = "^3.9"
2025-01-31 23:37:57 +00:00
google-auth = "2.38.0"
2025-02-28 23:23:49 +00:00
google-api-python-client = "2.162.0"
2025-01-31 23:37:57 +00:00
icalendar = "6.1.1"
pytz = "2025.1"
2024-09-01 09:11:37 +00:00
PyYAML = "6.0.2"
2024-11-01 00:01:42 +00:00
fire = "0.7.0"
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]
2024-02-05 20:15:28 +00:00
pytest = ">=7.4,<9.0"
2024-04-01 06:20:02 +00:00
flake8 = ">=5.0.4,<8.0.0"
2025-01-31 23:37:57 +00:00
black = ">=23.7,<26.0"
2022-06-03 16:42:10 +03:00
mypy = ">=0.960"
types-python-dateutil = "^2.8.19"
2022-06-03 16:42:10 +03:00
types-pytz = ">=2021.3.8"
2022-10-01 09:21:41 +00:00
types-PyYAML = "^6.0.12"
2024-01-01 02:14:00 +00:00
lxml = ">=4.9.3,<6.0.0"
2021-10-09 14:02:23 +03:00
2023-08-20 23:03:27 +03:00
[tool.poetry.group.docs.dependencies]
2024-08-01 08:40:35 +00:00
sphinx = ">=7.1,<7.5"
2024-05-01 10:25:39 +00:00
myst-parser = ">=2,<4"
2024-11-01 00:01:42 +00:00
sphinx-rtd-theme = ">=1.2.2,<4.0.0"
2023-08-20 23:03:27 +03:00
sphinx-copybutton = "^0.5.2"
2024-06-01 02:59:03 +00:00
sphinx-design = ">=0.5,<0.7"
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.*',
'googleapiclient',
'fire'
2022-06-03 23:39:11 +03:00
]
ignore_missing_imports = true