-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (62 loc) · 1.79 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
64
65
66
67
68
69
70
71
72
# Copyright (c) 2026 David Steele <dsteele@gmail.com>
#
# SPDX-License-Identifier: GPL-2.0-or-later
# License-Filename: LICENSE
#
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "argparse_formatter"
version = "1.6"
description = "Paragraph-preserving formatter for argparse"
readme = "README.md"
requires-python = ">=3.9"
authors = [ { name = "David Steele", email = "dsteele@gmail.com" } ]
keywords = [ "formatter", "argparse" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Environment :: Console",
"License :: OSI Approved :: ",
"GNU General Public License v2 or later (GPLv2+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: User Interfaces",
]
[project.optional-depencies]
test = [
"pytest",
]
[project.urls]
Homepage = "https://github.com/davesteele/argparse_formatter/"
Source = "https://github.com/davesteele/argparse_formatter.git"
Issues = "https://github.com/davesteele/argparse_formatter/issues"
Changelog = "https://github.com/davesteele/argparse_formatter/blob/main/CHANGELOG.md"
[project.scripts]
[tool.poetry]
package-mode = true
packages = [
{include = "argparse_formatter"},
]
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
testpaths = [ "argparse_formatter", "test" ]
markers = [
"webtest: tests requiring internet access",
"always_run: default config.py marker for universal tests",
"all: marker on every test",
]
pythonpath = [
".",
]
[tool.ruff]
line-length = 79
indent-width = 4