-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (97 loc) · 2.57 KB
/
Copy pathpyproject.toml
File metadata and controls
108 lines (97 loc) · 2.57 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clite"
version = "0.2.2"
description = "Small package for creating command line interfaces"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["pre-commit>=4.3.0"]
authors = [{ name = "Roman Sotnikov", email = "axemanofic@gmail.com" }]
maintainers = [{ name = "Roman Sotnikov", email = "axemanofic@gmail.com" }]
license = { file = "LICENSE" }
keywords = [
"python",
"shell",
"cli",
"terminal",
"typing",
"python3",
"click",
"typer",
"typehints",
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://axemanofic.github.io/clite"
Documentation = "https://axemanofic.github.io/clite"
Repository = "https://github.com/axemanofic/clite.git"
Issues = "https://github.com/axemanofic/clite/issues"
Changelog = "https://github.com/axemanofic/clite/blob/master/CHANGELOG.md"
[dependency-groups]
dev = [
"git-cliff>=2.8.0",
"black>=25.1.0",
"isort>=5.13.2",
"ruff>=0.9.0",
"mypy>=1.18.2",
"pdbpp>=0.12.1",
]
tests = [
"coverage>=7.13.5",
"nox>=2025.5.1",
"pytest>=8.3.4",
"pytest-cov>=7.1.0",
]
docs = [
"griffe-typingdoc>=0.2.8",
"mkdocs-material>=9.6.9",
"mkdocstrings-python>=1.16.5",
]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3
py_version = 39
line_length = 120
[tool.mypy]
strict = true
ignore_missing_imports = true
exclude = ["tests/", "noxfile.py"]
[[tool.mypy.overrides]]
module = "tests.*"
warn_unused_ignores = false
[[tool.mypy.overrides]]
module = "noxfile"
warn_unreachable = false
disallow_untyped_decorators = false
[tool.coverage.run]
source = ["clite", "tests"]
branch = true
omit = ["noxfile.py", "examples/*", "docs/*"]
[tool.coverage.report]
show_missing = true
skip_empty = true
[tool.coverage.html]
directory = "htmlcov"