Add ADB APK sideload tool

This commit is contained in:
2026-07-28 23:23:51 +02:00
commit 16e9eebc3d
7 changed files with 1901 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "adb-sideload-free-apps"
version = "0.1.0"
description = "Install free Android apps via ADB from F-Droid, GitHub, or GitLab"
requires-python = ">=3.11"
license = { text = "MIT" }
readme = "README.md"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project.scripts]
sideload = "sideload:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"