-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.25 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
[project]
name = "docstring-inheritance"
description = "Avoid writing and maintaining duplicated docstrings."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
authors = [{ name = "Antoine Dechaume" }]
classifiers = [
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dynamic = ["version"]
requires-python = ">=3.10,<4"
# This is only required for python 3.10.
dependencies = ["typing-extensions >=4,<5"]
optional-dependencies = { griffe = ["griffe>1"] }
[dependency-groups]
dev = ["covdefaults", "pytest", "pytest-cov"]
[project.urls]
Documentation = "https://antoined.github.io/docstring-inheritance"
Homepage = "https://github.com/AntoineD/docstring-inheritance"
Source = "https://github.com/AntoineD/docstring-inheritance"
Tracker = "https://github.com/AntoineD/docstring-inheritance/issues"
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]