File: pyproject.toml

package info (click to toggle)
python-stdlib-list 0.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 512 kB
  • sloc: makefile: 203; python: 199
file content (62 lines) | stat: -rw-r--r-- 1,762 bytes parent folder | download
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[tool.flit.module]
name = "stdlib_list"

[tool.flit.sdist]
include = ["tests/"]

[project]
name = "stdlib-list"
dynamic = ["version"]
description = "A list of Python Standard Libraries (2.7 through 3.13)."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Jack Maney", email = "jackmaney@gmail.com" }]
maintainers = [{ name = "William Woodruff", email = "william@yossarian.net" }]
classifiers = [
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: 3",
    "Intended Audience :: Developers",
    "Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = []
requires-python = ">=3.9"

[project.urls]
Homepage = "https://pypi.org/project/stdlib-list/"
Issues = "https://github.com/pypi/stdlib-list/issues"
Source = "https://github.com/pypi/stdlib-list"
Documentation = "https://pypi.github.io/stdlib-list/"

[project.optional-dependencies]
test = ["pytest", "pytest-cov", "coverage[toml]"]
lint = ["mypy", "ruff"]
doc = ["sphinx", "furo"]
dev = ["build", "stdlib-list[test,lint,doc]"]
# CI only: used for list generation for Python versions < 3.10.
support = ["sphobjinv"]

[tool.mypy]
allow_redefinition = true
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
sqlite_cache = true
strict_equality = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true

[tool.ruff]
lint.select = ["E", "F", "I", "W", "UP"]
line-length = 100