-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
36 lines (31 loc) · 957 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gitxray"
version = "1.0.17.4"
authors = [
{ name="Lucas Lavarello", email="llavarello@kulkan.com" },
]
description = "A multifaceted security tool which leverages Public GitHub REST APIs for OSINT, Forensics, Pentesting and more."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"requests>=2.32.3",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/kulkansecurity/gitxray"
Issues = "https://github.com/kulkansecurity/gitxray/issues"
[project.scripts]
gitxray = "gitxray.gitxray:gitxray_cli"
[tool.setuptools.package-data]
"gitxray" = ["include/html_report/*.html"]
[tool.setuptools]
license-files = []