-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (67 loc) · 1.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=65", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "Markus Bong", email = "[email protected]" },
{ name = "Guido Schmitz", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
description="Qualys SSL Labs API in Python"
dependencies = [
"dacite",
"httpx"
]
dynamic = [
"version",
]
license = { file = "LICENSE.md" }
name = "ssllabs"
readme = "README.md"
requires-python = ">= 3.8"
urls = {changelog = "https://github.com/2Fake/ssllabs/CHANGELOG.md", homepage = "https://github.com/2Fake/ssllabs"}
[project.optional-dependencies]
dev = [
"pre-commit",
]
docs = [
"m2r2",
"pydata_sphinx_theme",
"sphinx",
]
test = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-httpx",
]
[tool.black]
line-length = 127
[tool.isort]
combine_as_imports = true
filter_files = true
forced_separate = ["tests"]
line_length = 127
profile = "black"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
exclude = ["docs*"]
ignore = ["ANN101", "ANN401", "D203", "D212"]
line-length = 127
select = ["ALL"]
target-version = "py38"
[tool.ruff.isort]
combine-as-imports = true
forced-separate = ["tests"]
[tool.ruff.per-file-ignores]
"ssllabs/data/*" = ["A003", "FA100", "N815", "TCH001"]
"tests/*" = ["PLR2004", "S"]
"example.py" = ["TCH001"]
[tool.setuptools]
packages = { find = {exclude=["docs*", "tests*"]} }
[tool.setuptools_scm]