-
Notifications
You must be signed in to change notification settings - Fork 52
/
pyproject.toml
51 lines (45 loc) · 1.14 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "praetorian-gato"
version = "1.6.0"
description = "GitHub Actions Enumeration and Attack Framework"
readme = "readme.md"
authors = [
{name = "Adnan Khan", email = "[email protected]"},
{name = "Matthew Jackoski", email = "[email protected]"},
{name = "Mason Davis", email = "[email protected]"}
]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"colorama",
"requests",
"pyyaml",
"packaging",
"cryptography"
]
[project.optional-dependencies]
test = [
"flake8",
"pytest",
"pytest-cov"
]
[tool.pytest.ini_options]
testpaths = ["unit_test"]
python_files = ["test_*.py"]
addopts = "--cov=gato"
[tool.coverage.run]
source = ['gato']
[tool.coverage.html]
directory = "cov_html"
[project.scripts]
gato = "gato.main:entry"
praetorian-gato = "gato.main:entry"