-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
21 lines (18 loc) · 605 Bytes
/
pyproject.toml
File metadata and controls
21 lines (18 loc) · 605 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool.poetry]
name = "GoodHound"
version = "0.1.0"
description = "A tool to find vulnerabilities in Active Directory environments"
authors = ["idnahacks <email@example.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/idnahacks/GoodHound"
repository = "https://github.com/idnahacks/GoodHound"
keywords = ["active directory", "vulnerability", "security", "audit"]
[tool.poetry.dependencies]
pandas = "*"
py2neo = "*"
[tool.poetry.scripts]
GoodHound = "goodhound.__init__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"