-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 840 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "griffon"
version = "0.6.17"
description = "A tool to exploit bad configurations in Active Directory"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-3.0"}
authors = [
{name = "GriffonAD Contributors"}
]
dependencies = [
"ldap3",
"dash",
"dash-cytoscape",
"jinja2",
"colorama",
"pycryptodome",
]
[project.scripts]
griffon = "griffonad.griffon:main"
[project.optional-dependencies]
dev = [
"pytest",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["griffonad*"]
[tool.setuptools.package-data]
"griffonad" = ["config.ml"]
"griffonad.assets" = ["*"]
"griffonad.templates" = ["*"]
"griffonad.tools" = ["comment.cmtx", "pol.json"]