-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.01 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mailtrace"
version = "0.2.0"
description = ""
authors = [{ name = "SiriusKoan", email = "me@siriuskoan.one" }]
readme = "README.md"
dependencies = [
"click>=8.2.1",
"graphviz>=0.21",
"networkx>=3.5",
"opensearch-py>=3.0.0",
"paramiko>=3.5.1",
"pydot>=4.0.1",
"pyyaml>=6.0.2",
]
[tool.setuptools]
packages = ["mailtrace"]
[project.scripts]
mailtrace = "mailtrace.__main__:cli"
[dependency-groups]
dev = [
"black>=25.1.0",
"flake8-pyproject>=1.2.3",
"isort>=6.0.1",
"pyright>=1.1.402",
]
tracing = [
"opentelemetry-api>=1.21.0",
"opentelemetry-sdk>=1.21.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.21.0",
]
[tool.flake8]
exclude = ".venv"
ignore = ['E501', 'E704', 'W503']
[tool.isort]
profile = "black"
src_paths = ["mailtrace"]
[tool.pyright]
include = ["mailtrace"]
typeCheckingMode = "basic"
reportMissingImports = "error"
[tool.black]
line-length = 79