-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.12 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wayparam"
version = "0.3.0"
description = "Fetch and normalize parameterized URLs from the Internet Archive Wayback CDX API (OSINT-friendly)."
readme = "README.md"
requires-python = ">=3.9"
license = {text = "GPL-3.0"}
authors = [{name = "Alessandro Greco"}]
keywords = ["osint", "wayback", "url", "parameters", "security"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"httpx>=0.26.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.6.0",
]
[project.scripts]
wayparam = "wayparam.cli:main"
[project.urls]
Homepage = "https://aleff-github.github.io/wayparam/"
Repository = "https://github.com/aleff-github/wayparam"
Issues = "https://github.com/aleff-github/wayparam/issues"
[tool.setuptools.packages.find]
where = ["src"]