-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.43 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
52
53
54
55
[tool.poetry]
name = "pacu"
version = "2.0"
description = "The AWS exploitation framework, designed for testing the security of Amazon Web Services environments."
license = "MIT"
authors = ["Ryan Gerstenkorn <ryan.gerstenkorn@rhinosecuritylabs.com>"]
readme = "README.md"
homepage = "https://pypi.org/project/pacu"
documentation = "https://pacu.readthedocs.io"
repository = "https://github.com/RyanJarv/pacu"
keywords = []
classifiers = [
# TODO: update this list to match your application: https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 1 - Planning",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
typer = "^0.3.2"
prompt-toolkit = "^3.0.19"
boto3 = "^1.17.109"
boto3-stubs = {extras = ["essential"], version = "^1.21.22"}
policyuniverse = "^1.4.0"
[tool.poetry.dev-dependencies]
boto3-stubs = {extras = ["iam", "sdb"], version = "^1.21.21"}
moto = {extras = ["sdb"], version = "^3.1.0"}
# Formatters
black = ">=20.8b1"
# Linters
mypy = "*"
pydocstyle = "*"
pylint = ">=2.6.0"
# Testing
pytest = ">=5.3.2"
[tool.poetry.scripts]
pacu = "pacu.cli:app"
paws = "pacu.aws:app"
[tool.black]
target-version = ["py38", "py39"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"