-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (36 loc) · 1.16 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 = "griffe-inherited-method-crossrefs"
description = "Griffe extension to replace docstrings of inherited methods with cross-references to parent"
authors = [
{name = "Matt Laporte", email = "[email protected]"}
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9"
keywords = []
version = "0.0.1.4"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed",
]
urls = {Repository = "https://github.com/mlprt/griffe-inherited-method-crossrefs"}
dependencies = [
"griffe>=0.38",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["griffe_inherited_method_crossrefs/*"]