|
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 = ["leakix", "security", "osint", "reconnaissance"] |
| 13 | +classifiers = [ |
| 14 | + "Development Status :: 4 - Beta", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "License :: OSI Approved :: MIT License", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Programming Language :: Python :: 3.11", |
| 19 | + "Programming Language :: Python :: 3.12", |
| 20 | + "Programming Language :: Python :: 3.13", |
| 21 | + "Programming Language :: Python :: 3.14", |
| 22 | + "Topic :: Security", |
| 23 | + "Typing :: Typed", |
| 24 | +] |
10 | 25 | dependencies = [ |
11 | 26 | "requests", |
12 | 27 | "httpx>=0.28.0", |
@@ -52,6 +67,12 @@ ignore_missing_imports = false |
52 | 67 | testpaths = ["tests"] |
53 | 68 | addopts = "-v" |
54 | 69 |
|
| 70 | +[project.urls] |
| 71 | +Homepage = "https://leakix.net" |
| 72 | +Repository = "https://github.com/LeakIX/LeakIXClient-Python" |
| 73 | +Issues = "https://github.com/LeakIX/LeakIXClient-Python/issues" |
| 74 | +Changelog = "https://github.com/LeakIX/LeakIXClient-Python/blob/main/CHANGELOG.md" |
| 75 | + |
55 | 76 | [tool.hatch.build.targets.sdist] |
56 | 77 | include = ["leakix/", "LICENSE", "README.md", "pyproject.toml"] |
57 | 78 |
|
|
0 commit comments