-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 815 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 815 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
[project]
name = "nginx-static-analysis"
version = "0.3.1"
description = "Parse Nginx configurations in a clear manner for debugging purposes"
authors = [
{name = "Alexander Grooff", email = "alexandergrooff@gmail.com"},
]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.7"
license = {name = "MIT", file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"crossplane==0.5.7",
"pydantic==2.7.1",
"loguru==0.5.3",
"prettytable==2.5.0",
]
[project.scripts]
nginx-static-analysis = "nginx_analysis.main:main"
[tool.setuptools.packages.find]
include = ["nginx_analysis"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black" # Make isort compatible with black