mirror of
https://github.com/nox-project/nox-framework.git
synced 2026-06-08 16:07:17 +00:00
9bf66d3e50
- 124 sources (+1 xposedornot, bgpview replaced with ripestat) - Fix gravatar MD5 transform, fofa base64 query encoding - Fix misp_search URL resolution, threatconnect HMAC placeholder - Fix spycloud, duckduckgo, mailboxlayer/numverify/ipstack/ipinfodb endpoints - Fix DeHashEngine v1→v2, DorkEngine engine label, backup_endpoints consumed - Fix Retry-After HTTP-date parsing, Hashmob API schema, FIPS hashlib crash - Fix DB.close() event loop leak, _random_headers CH-UA override - Add query_transform mechanism (md5_lower, fofa_domain) - Lower scores: spyonweb, pipl_search, twitter_v2, hudsonrock rate_limit - Clean all internal tracking comments, fix Italian docstring
43 lines
1001 B
TOML
43 lines
1001 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "nox-cli"
|
|
version = "1.0.2"
|
|
description = "Advanced Asynchronous Cyber Threat Intelligence Framework"
|
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
license = { text = "Apache-2.0" }
|
|
authors = [{ name = "nox-project" }]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"aiohttp>=3.13.5",
|
|
"aiohttp-socks>=0.8.4",
|
|
"aiosqlite>=0.20.0",
|
|
"httpx[http2]>=0.27.0",
|
|
"brotli>=1.1.0",
|
|
"zstandard>=0.23.0",
|
|
"requests>=2.32.3",
|
|
"certifi>=2024.2.2",
|
|
"cloudscraper>=1.2.71",
|
|
"beautifulsoup4>=4.12.3",
|
|
"lxml>=5.1.0",
|
|
"dnspython>=2.6.0",
|
|
"phonenumbers>=8.13.0",
|
|
"pydantic>=2.0.0",
|
|
"pydantic-core>=2.0.0",
|
|
"colorama>=0.4.6",
|
|
"rich>=13.7.0",
|
|
"stem>=1.8.2",
|
|
"fpdf2>=2.7.9",
|
|
]
|
|
|
|
[project.scripts]
|
|
nox-cli = "nox:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["sources/*.json"]
|