-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (40 loc) · 1.3 KB
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
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ics-merger"
description = "Merge multiple .ics calendar files into combined, de-duplicated files."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Denali Cornwell", email = "cwell.de@gmail.com" }]
keywords = ["ics", "icalendar", "calendar", "merge", "google-calendar"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Scheduling",
]
dependencies = ["icalendar"]
dynamic = ["version"]
[project.optional-dependencies]
gui = ["tkinterdnd2"]
dev = ["pytest", "ruff"]
[project.scripts]
ics-merger = "ics_merger.cli:main"
[project.urls]
Homepage = "https://github.com/dcwell/Python-ics-Merger"
Repository = "https://github.com/dcwell/Python-ics-Merger"
Issues = "https://github.com/dcwell/Python-ics-Merger/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "ics_merger.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py39"