-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 1.3 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
45
46
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "androidmigrate"
dynamic = ["version"]
description = "Checkpointed Android folder backup and sync over adb."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [{ name = "Dinesh Jinjala" }]
keywords = ["android", "backup", "adb", "sync", "migrate"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities",
]
[project.scripts]
androidmigrate = "androidmigrate.cli:main"
[project.urls]
Homepage = "https://github.com/MachineLearning-Nerd/AndroidMigrate"
Repository = "https://github.com/MachineLearning-Nerd/AndroidMigrate"
Issues = "https://github.com/MachineLearning-Nerd/AndroidMigrate/issues"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.dynamic]
version = { attr = "androidmigrate.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]