-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.38 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
[project]
name = "cppm"
version = "0.2.0"
description = "A CLI for interacting with Aruba ClearPass via API. Facilitates bulk imports, exports, reporting."
license = "MIT"
authors = [{name="Wade Wells (Pack3tL0ss)", email="wade@consolepi.org"}]
maintainers = [{name="Wade Wells (Pack3tL0ss)", email="wade@consolepi.org"}]
readme = "README.md"
repository = "https://github.com/Pack3tL0ss/cppm-api-cli"
documentation = "https://cppm-api-cli.readthedocs.org"
keywords = [
"cli",
"Aruba",
"Aruba Networks",
"Aruba Central",
"HPE",
"API",
"RESTFUL",
"REST"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
]
[tool.hatchling.scripts]
cencli = "centralcli.cli:app"
[tool.hatchling.dependencies]
python = ">=3.8,<4.0"
typer = ">=0.6"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
cache-dir = "~/.cache/ruff"
target-version = "py312"
line-length = 300 # Setting high to not reformat existing code
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore::DeprecationWarning"
]