-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
380c7e6
commit bbdd53a
Showing
5 changed files
with
48 additions
and
39 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import os | ||
from cryptography.fernet import Fernet | ||
|
||
VERSION = "2.0.3" | ||
|
||
class Error(Exception): | ||
pass | ||
|