-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1.38 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Install from repo root: pip install .
# Run API: cd backend && uvicorn main:app (or set PYTHONPATH after install)
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "emulator-android-farm"
dynamic = ["version", "dependencies"]
description = "Android AVD farm — FastAPI backend for emulators, fingerprints, WebSocket mirror, APK store"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
authors = [{ name = "Mostafa El-Bagory" }]
maintainers = [{ name = "Storage TE" }]
keywords = ["android", "emulator", "avd", "adb", "fastapi"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/code-root/emulator-android"
Repository = "https://github.com/code-root/emulator-android"
Changelog = "https://github.com/code-root/emulator-android/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = { file = ["VERSION"] }
dependencies = { file = ["backend/requirements.txt"] }
[tool.setuptools.package-dir]
"" = "backend"
[tool.setuptools.packages.find]
where = ["backend"]
exclude = ["tests*"]
[tool.setuptools]
py-modules = ["main", "config"]