-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (39 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
51 lines (39 loc) · 1.22 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clap_python"
version = "0.2.4"
requires-python = ">=3.7"
authors = [{name = "Max Wiklund"},]
maintainers = [{name = "Max Wiklund"}]
description = "Rust Clap inspired command line argument parser."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["cli", "Command line argument parser."]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Typing :: Typed",
]
dependencies = ['importlib-metadata;python_version<"3.8"']
[project.urls]
Homepage = "https://github.com/maxWiklund/clap-python"
Documentation = "https://clap-python.readthedocs.io/en/latest"
Repository = "https://github.com/maxWiklund/clap-python.git"
"Bug Tracker" = "https://github.com/maxWiklund/clap-python/issues"
[project.scripts]
clap-python-register-complete-app = "clap_python.complete._register_app:run"
[tool.hatch.build.targets.wheel]
packages = ["clap_python"]
[tool.ruff]
line-length = 88
[tool.isort]
line_length = 88
[tool.pytest.ini_options]
testpaths = [
"test.py",
]