-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (84 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
95 lines (84 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "leakix"
version = "1.1.0"
description = "Official python client for LeakIX (https://leakix.net)"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Danny Willems", email = "danny@leakix.net" },
{ name = "Valentin Lobstein", email = "valentin@leakix.net" },
]
requires-python = ">=3.11"
keywords = [
"leakix",
"security",
"osint",
"reconnaissance",
"vulnerability",
"attack-surface",
"exposure",
"threat-intelligence",
"api-client",
"cybersecurity",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Security",
"Typing :: Typed",
]
dependencies = [
"requests",
"httpx>=0.28.0",
"l9format==2.0.1",
"fire>=0.5,<0.8",
]
[dependency-groups]
dev = [
"python-decouple",
"pytest",
"pytest-cov",
"mypy",
"types-requests",
"requests-mock",
"ruff",
"pip-audit",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
# Allow percent formatting in example/executable (existing code style)
"example/*.py" = ["UP031"]
"executable/*.py" = ["UP031"]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = false
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
[project.urls]
Homepage = "https://leakix.net"
Repository = "https://github.com/LeakIX/LeakIXClient-Python"
Issues = "https://github.com/LeakIX/LeakIXClient-Python/issues"
Changelog = "https://github.com/LeakIX/LeakIXClient-Python/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.sdist]
include = ["leakix/", "LICENSE", "README.md", "pyproject.toml"]
[tool.hatch.build.targets.wheel]
include = ["leakix/"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"