-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "adbackup"
version = "1.0.0"
description = "Backs up photos and videos from an Android phone over adb - copies only what's missing and keeps the real capture dates."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Emil Haase" }]
keywords = ["adb", "android", "backup", "photos", "exif", "dcim"]
classifiers = [
"Environment :: Console",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
"Topic :: System :: Archiving :: Backup",
]
dependencies = [
"prompt_toolkit>=3.0.36",
"rich>=13.0",
"Pillow>=10.0",
"pillow-heif>=0.13",
"ExifRead>=3.0",
"hachoir>=3.1",
]
[project.scripts]
adbackup = "adbackup.cli:main"
[project.urls]
Homepage = "https://github.com/EmilHaase/adbackup"
Repository = "https://github.com/EmilHaase/adbackup"
Issues = "https://github.com/EmilHaase/adbackup/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/adbackup"]