-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.8 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
[project]
name = "powercli-python"
version = "0.2.0"
authors = [{ name = "Jonas da Silva" }]
description = "Build powerful command-line applications in Python"
license = { text = "GPLv3" }
readme = "README.md"
requires-python = ">=3.13"
keywords = ["cli", "command-line"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Terminals",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"adorable2~=0.1.1",
"attrs>=23.1.0",
"loguru>=0.7.2",
"wraptext==1.0.1",
]
[project.optional-dependencies]
docs = [
"Sphinx~=8.1.3",
"furo~=2024.8.6",
"myst-parser~=4.0.1",
"sphinx-autodoc2~=0.5.0",
"astroid~=3.3.8",
"sphinx-inline-tabs",
]
dev = [
"mypy>=1.15.0",
"pytest~=7.4.3",
"rich~=13.7.0",
"ruff>=0.9.6",
"isort>=6.0.0",
"codespell>=2.4.1",
"coverage>=7.6.12",
"docstr-coverage>=2.3.2",
"nox==2025.2.9", # mainly used for type hints; nox should be installed outside venv
]
[project.urls]
"Repository" = "https://github.com/phoenixr-codes/powercli"
"Documentation" = "https://phoenixr-codes.github.io/powercli"
"Bug Tracker" = "https://github.com/phoenixr-codes/powercli/issues"
[project.scripts]
powerdoc = "powerdoc.__init__:run"
[tool.poetry]
packages = [{ include = "powercli" }, { include = "powerdoc" }]
[tool.codespell]
skip = "*.svg,./htmlcov,./docs/_build,pyproject.toml,poetry.lock"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.mypy]
strict = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"