-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (42 loc) · 1.6 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hashscanner"
dynamic = ["version"]
description = "Python client for the HashScanner API — query 1.5B+ NIST NSRL known file hashes by API."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "HashScanner" }]
keywords = ["nsrl", "hash", "lookup", "dfir", "forensics", "hashscanner", "nist", "md5", "sha1", "sha256", "rds"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["requests>=2.25"]
[project.optional-dependencies]
dev = ["pytest>=7"]
[project.urls]
Homepage = "https://www.hashscanner.com"
Documentation = "https://www.hashscanner.com/api"
Source = "https://github.com/hashscanner/hashscanner-python"
"Issue Tracker" = "https://github.com/hashscanner/hashscanner-python/issues"
"Sign up (free API key)" = "https://www.hashscanner.com/register"
[project.scripts]
hashscanner = "hashscanner.cli:main"
[tool.hatch.version]
path = "src/hashscanner/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/hashscanner"]