-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (45 loc) · 1.3 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "nestargs"
description = "Nested arguments parser"
authors = [{ name = "Takahiro Yano", email = "[email protected]" }]
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
keywords = [
"argparse",
"arguments",
"parser",
"cli",
"command",
"line",
"interface",
]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
[project.urls]
Repository = "https://github.com/speg03/nestargs"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/nestargs/_version.py"
[tool.pytest.ini_options]
addopts = "--cov=nestargs --cov-report=term-missing --cov-report=xml"
[tool.coverage.run]
omit = ["src/nestargs/_version.py"]