-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move packaging to use pyproject.toml
- Loading branch information
1 parent
917ad4c
commit 7f6590f
Showing
4 changed files
with
30 additions
and
19 deletions.
There are no files selected for viewing
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,8 @@ | ||
.idea/ | ||
venv/ | ||
output/ | ||
dist/ | ||
*.egg-info/ | ||
__pycache__/ | ||
|
||
*.py[cod] |
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,28 @@ | ||
[project] | ||
name = "iphone_backup_decrypt" | ||
version = "0.3.0" | ||
authors = [ | ||
{ name="James Sharkey" }, | ||
] | ||
description = "Decrypt an iOS13+ encrypted local backup." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Security :: Cryptography" | ||
] | ||
|
||
dependencies = [ | ||
"biplist>=1.0.3", | ||
"pycryptodome>=3.9.1" | ||
] | ||
|
||
[project.optional-dependencies] | ||
fastpbkdf2 = ["fastpbkdf2>=0.2"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/jsharkey13/iphone_backup_decrypt" | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.