-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
38 lines (33 loc) · 999 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "Wartungsplan"
version = "1.0rc3"
description = "Manage recurring tasks in ical"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPLv3"}
authors = [
{name = "Felix Bauer", email = "[email protected]"},
]
maintainers = [
{name = "Felix Bauer", email = "[email protected]"},
{name = "Christian Habrom", email = "[email protected]"},
]
dependencies = [
"icalendar==5.0.13",
"python-dateutil==2.9.0",
"recurring-ical-events==2.2.3",
"requests==2.32.3",
"importlib_metadata==8.0.0",
]
[project.optional-dependencies]
otrs = [ "pyotrs==1.4.0" ]
exchange = [ "exchangelib==5.4.2" ]
[project.urls]
repository = "https://github.com/science-computing/wartungsplan"
[project.scripts]
Wartungsplan = "Wartungsplan:main"
addEventToIcal = "addEventToIcal:main"
downloadExchange = "downloadExchange:main"