1
0
mirror of https://github.com/b4tman/sync_ics2gcal synced 2025-09-05 18:07:38 +00:00
This commit is contained in:
2023-08-20 23:03:27 +03:00
parent b2c4136a92
commit 545cde2ccc
18 changed files with 741 additions and 103 deletions

View File

@@ -13,7 +13,7 @@ classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
@@ -26,7 +26,13 @@ pytz = "2023.3"
PyYAML = "6.0.1"
fire = "0.5.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
flake8 = "^5.0.4"
black = "^23.7.0"
@@ -36,6 +42,13 @@ types-pytz = ">=2021.3.8"
types-PyYAML = "^6.0.12"
lxml = "^4.9.3"
[tool.poetry.group.docs.dependencies]
sphinx = ">=7.1,<7.2"
myst-parser = "^2.0.0"
sphinx-rtd-theme = "^1.2.2"
sphinx-copybutton = "^0.5.2"
sphinx-design = "^0.5.0"
[tool.poetry.scripts]
sync-ics2gcal = "sync_ics2gcal.sync_calendar:main"
manage-ics2gcal = "sync_ics2gcal.manage_calendars:main"