-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
58 lines (51 loc) · 1.36 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
56
57
58
[tool.poetry]
name = "wonk"
version = "0.7.1"
description = "Wonk is a tool for combining a set of AWS policy files into smaller compiled policy sets."
license = "Apache-2.0"
authors = ["Kirk Strauser <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/aminohealth/wonk"
repository = "https://github.com/aminohealth/wonk.git"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: System :: Systems Administration"
]
[tool.poetry.dependencies]
python = "^3.7"
boto3 = "^1.17"
ortools = "^9.3"
pydantic = "^1.8"
PyYAML = ">=5.0"
toposort = "^1.6"
xdg = "^5.0"
[tool.poetry.dev-dependencies]
black = "*"
docutils = "*"
flake8 = "*"
mypy = "*"
pylint = "*"
pytest = "*"
pytest-mock = "*"
rstcheck = "*"
[tool.poetry.scripts]
wonk = "wonk.cli:handle_command_line"
[build-system]
requires = ["poetry-core>=1.3.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
[tool.isort]
profile="black"
line_length=99
[tool.mypy]
check_untyped_defs=true
ignore_missing_imports=true
files="**/*.py"