|
2 | 2 | name = "leakix" |
3 | 3 | version = "0.2.0" |
4 | 4 | description = "Official python client for LeakIX (https://leakix.net)" |
| 5 | +readme = "README.md" |
| 6 | +license = { text = "MIT" } |
5 | 7 | authors = [ |
6 | 8 | { name = "Danny Willems", email = "danny@leakix.net" }, |
7 | 9 | { name = "Valentin Lobstein", email = "valentin@leakix.net" }, |
8 | 10 | ] |
9 | 11 | requires-python = ">=3.11" |
| 12 | +keywords = [ |
| 13 | + "leakix", |
| 14 | + "security", |
| 15 | + "osint", |
| 16 | + "reconnaissance", |
| 17 | + "vulnerability", |
| 18 | + "attack-surface", |
| 19 | + "exposure", |
| 20 | + "threat-intelligence", |
| 21 | + "api-client", |
| 22 | + "cybersecurity", |
| 23 | +] |
| 24 | +classifiers = [ |
| 25 | + "Development Status :: 4 - Beta", |
| 26 | + "Intended Audience :: Developers", |
| 27 | + "License :: OSI Approved :: MIT License", |
| 28 | + "Programming Language :: Python :: 3", |
| 29 | + "Programming Language :: Python :: 3.11", |
| 30 | + "Programming Language :: Python :: 3.12", |
| 31 | + "Programming Language :: Python :: 3.13", |
| 32 | + "Programming Language :: Python :: 3.14", |
| 33 | + "Topic :: Security", |
| 34 | + "Typing :: Typed", |
| 35 | +] |
10 | 36 | dependencies = [ |
11 | 37 | "requests", |
12 | 38 | "httpx>=0.28.0", |
@@ -52,6 +78,12 @@ ignore_missing_imports = false |
52 | 78 | testpaths = ["tests"] |
53 | 79 | addopts = "-v" |
54 | 80 |
|
| 81 | +[project.urls] |
| 82 | +Homepage = "https://leakix.net" |
| 83 | +Repository = "https://github.com/LeakIX/LeakIXClient-Python" |
| 84 | +Issues = "https://github.com/LeakIX/LeakIXClient-Python/issues" |
| 85 | +Changelog = "https://github.com/LeakIX/LeakIXClient-Python/blob/main/CHANGELOG.md" |
| 86 | + |
55 | 87 | [tool.hatch.build.targets.sdist] |
56 | 88 | include = ["leakix/", "LICENSE", "README.md", "pyproject.toml"] |
57 | 89 |
|
|
0 commit comments