-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
73 lines (63 loc) · 2.12 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
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
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling>=1.11.0"]
build-backend = "hatchling.build"
[project]
name = "rich-argparse"
version = "1.6.0"
description = "Rich help formatters for argparse and optparse"
authors = [
{name="Ali Hamdan", email="[email protected]"},
]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: User Interfaces",
]
keywords = ["argparse", "rich", "help-formatter", "optparse"]
dependencies = [
"rich >= 11.0.0",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/hamdanal/rich-argparse"
Documentation = "https://github.com/hamdanal/rich-argparse#rich-argparse"
Issue-Tracker = "https://github.com/hamdanal/rich-argparse/issues"
Changelog = "https://github.com/hamdanal/rich-argparse/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.sdist]
include = ["CHANGELOG.md", "CONTRIBUTING.md", "requirements-dev.txt", "rich_argparse", "tests", "LICENSE", "README.md", "pyproject.toml" ]
[tool.hatch.build.targets.wheel]
packages = ["rich_argparse"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
extend-select = ["C4", "B", "UP", "RUF100", "TID", "T10"]
extend-ignore = ["E501"]
unfixable = ["B"]
isort.required-imports = ["from __future__ import annotations"]
isort.extra-standard-library = ["typing_extensions"]
flake8-tidy-imports.ban-relative-imports = "all"
[tool.mypy]
python_version = "3.8"
strict = true
[[tool.mypy.overrides]]
module = ["tests.*"]
check_untyped_defs = false
disallow_untyped_defs = false
disallow_incomplete_defs = false
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
plugins = ["covdefaults"]
source = ["rich_argparse", "tests"]