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