-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (35 loc) · 1.25 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name="securedb"
authors = [{name="Filippo Romani", email="[email protected]"}]
description="Easily interact with JSON-based encrypted databases."
readme = "README.md"
requires-python = ">=3.10"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = [
"version"
]
dependencies = ["cryptography"]
[project.urls]
Homepage = "https://github.com/filipporomani/securedb"
Docs = "https://github.com/filipporomani/securedb/blob/main/README.md"
"Issues Reporting" = "https://github.com/filipporomani/securedb/issues"
Download = "https://github.com/filipporomani/securedb/releases/latest"
Changelog = "https://github.com/filipporomani/securedb/releases"
[tool.hatch.version]
path = "src/securedb.py"
variable = "VERSION"
[tool.hatch.build.targets.wheel]
packages = ["whatsapp"]