Files
adb-sideload-free-apps/pyproject.toml

22 lines
484 B
TOML

[project]
name = "adb-sideload-free-apps"
version = "0.1.0"
description = "Install free Android apps via ADB from F-Droid, GitHub, GitLab, or Codeberg"
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"