-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (36 loc) · 1.19 KB
/
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
[project]
name = "datetime-repeat"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "Jesse Brooklyn Hannah", email = "[email protected]" }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Office/Business :: Scheduling",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
requires-python = "~=3.10"
dependencies = [
"python-dateutil>=2.9.0.post0",
"tzdata; platform_system == 'Windows' or platform_system == 'AIX'",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["ipython>=8.31.0"]
docs = [
"myst-parser~=4.0.0",
"sphinx~=8.1.3",
"sphinx-autodoc-typehints~=3.0.1",
"sphinx-rtd-theme~=3.0.2",
]
test = ["pytest~=8.3.4", "pytest-cov~=6.0.0", "pytest-xdist~=3.6.1"]