-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.54 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
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "c6t"
version = "0.2.0"
description = "Unofficial Administrative Command Line Interface for Contrast Security"
authors = [
{ name = "Jonathan Harper", email = "39912347+jharper-sec@users.noreply.github.com" },
]
dependencies = [
"rich>=13.7.1",
"typer>=0.12.3",
"jinja2>=3.1.4",
"pyyaml>=6.0.1",
"gitpython>=3.1.43",
"questionary>=2.0.1",
"lxml>=5.2.2",
"types-pyyaml>=6.0.12.20240311",
"httpx>=0.27.0",
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">= 3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/jharper-sec/c6t"
Issues = "https://github.com/jharper-sec/c6t/issues"
Documentation = "https://github.com/jharper-sec/c6t/blob/main/README.md"
[project.scripts]
c6t = "c6t.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"mypy>=1.10.0",
"pytest>=8.2.1",
"black>=24.4.2",
"ruff>=0.4.4",
"types-pyyaml>=6.0.12.20240311",
"types-requests>=2.31.0.20240406",
"types-lxml>=2024.4.14",
"pip>=24.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/c6t"]
[tool.mypy]
python_version = "3.8"
strict = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_return_any = true
warn_unreachable = true