forked from AdnaneKhan/Gato-X
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 959 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gato-x"
version = "0.5.8"
description = "GitHub Actions Enumeration and Attack Framework"
readme = "README.md"
authors = [
{name = "Adnan Khan", email = "[email protected]"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"colorama",
"requests",
"pyyaml",
"cryptography"
]
[project.optional-dependencies]
test = [
"flake8",
"pytest",
"pytest-cov"
]
[tool.hatch.build.targets.wheel]
packages = [
"gatox"
]
[tool.pytest.ini_options]
testpaths = ["unit_test"]
python_files = ["test_*.py"]
addopts = "--cov=gatox"
[tool.coverage.run]
source = ["gatox"]
[tool.coverage.html]
directory = "cov_html"
[project.scripts]
gato-x = "gatox.main:entry"
gatox = "gatox.main:entry"