-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
63 lines (55 loc) · 1.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=80.0"]
build-backend = "setuptools.build_meta"
[project]
name = "docsource"
description = "Parse, check and update doc-string documentation"
readme = { file = "README.md", content-type = "text/markdown" }
keywords = ["docstring-documentation", "docstring-checker", "python-typing"]
license = "MIT"
authors = [
{ name = "Levente Hunyadi", email = "hunyadi@gmail.com" }
]
maintainers = [
{ name = "Levente Hunyadi", email = "hunyadi@gmail.com" }
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: Utilities",
"Typing :: Typed"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"build >= 1.4",
"mypy >= 1.19",
"ruff >= 0.14"
]
[project.urls]
"Homepage" = "https://github.com/hunyadi/docsource"
"Source" = "https://github.com/hunyadi/docsource"
[tool.setuptools]
include-package-data = true
packages = ["docsource"]
zip-safe = true
[tool.setuptools.dynamic]
version = { attr = "docsource.__version__" }
[tool.setuptools.package-data]
"docsource" = ["py.typed"]
[tool.ruff]
line-length = 160
[tool.ruff.lint]
select = ["E", "F", "B", "I", "Q"]