-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 792 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (23 loc) · 792 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
[build-system]
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ios-developer-toolkit"
version = "0.1.0"
description = "Safety-focused pymobiledevice3 GUI, Developer Disk Image mounter, and iOS evidence workbench"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"PySide6==6.11.2",
"pymobiledevice3==10.11.0",
]
[project.scripts]
ios-developer-toolkit = "ios_developer_toolkit.app:main"
ios-developer-collect = "ios_developer_toolkit.collector:main"
ios-local-ddi = "ios_developer_toolkit.local_ddi:main"
ios-ipa-inspect = "ios_developer_toolkit.ipa_inspector:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["ios_developer_toolkit*"]
[tool.setuptools.package-data]
ios_developer_toolkit = ["assets/*.png"]