-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.48 KB
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
59
[project]
name = "wonk"
version = "0.8.2"
description = "Wonk is a tool for combining a set of AWS policy files into smaller compiled policy sets."
readme = "README.rst"
authors = [{ name = "Kirk Strauser", email = "kirk@strauser.com" }]
requires-python = ">=3.9"
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Systems Administration",
]
dependencies = [
"boto3>=1.17",
"ortools>=9.3",
"pydantic>=1.8",
"pyyaml>=5.0",
"toposort>=1.6",
"xdg>=5.0",
]
[project.urls]
Homepage = "https://github.com/kstrauser/wonk"
Repository = "https://github.com/kstrauser/wonk.git"
Issues = "https://github.com/kstrauser/wonk/issues"
[dependency-groups]
dev = [
"docutils>=0.21.2",
"mypy>=1.15.0",
"pytest>=8.3.5",
"pytest-mock>=3.14.0",
"rstcheck>=6.2.4",
"ruff>=0.11.9",
]
[build-system]
requires = ["uv_build>=0.7.3,<0.8.0"]
build-backend = "uv_build"
[project.scripts]
wonk = "wonk.cli:handle_command_line"
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
files = "**/*.py"
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]