-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 922 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (27 loc) · 922 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "htpbe"
version = "0.1.0"
description = "Python client for the HTPBE PDF tamper/forgery detection API"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "HTPBE", email = "hello@htpbe.tech" }]
keywords = ["pdf", "forensics", "tamper", "forgery", "fraud", "document", "api", "tamper-detection"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["requests>=2.25"]
[project.urls]
Homepage = "https://htpbe.tech"
Documentation = "https://htpbe.tech/api"
Source = "https://github.com/htpbe/python-client"
[tool.hatch.build.targets.wheel]
packages = ["htpbe"]