mirror of
https://github.com/csd4ni3l/gp-dl.git
synced 2026-01-01 04:23:44 +01:00
* add user and password parameters (not used if profile_dir is set) * remove mandatory album_url args * auto login with user and password * add locale for FR and GOOGLE_LANG (default en) environment variable to switch * add CHROME_BINARY whenever need to specify chrome binary path * add headless compatibilty for WSL * fix missing gp_temp after first loop * fix unclickable "More option" button by fetching "Share" button first
32 lines
864 B
TOML
32 lines
864 B
TOML
[project]
|
|
name = "gp-dl"
|
|
version = "0.3.0"
|
|
description = "A Python-based Google Photos downloader built with Selenium."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "GPL v3" }
|
|
authors = [{ name = "csd4ni3l", email = "csd4ni3l@duck.com" }]
|
|
dependencies = ["selenium>=4.33.0"]
|
|
classifiers = [
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Operating System :: OS Independent",
|
|
"Environment :: Console",
|
|
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
|
|
"Topic :: Utilities",
|
|
]
|
|
|
|
[project.scripts]
|
|
gp-dl = "gp_dl.cli:run_cli"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
[tool.setuptools]
|
|
packages = ["gp_dl"]
|
|
|
|
[tool.setuptools.package-data]
|
|
gp_dl = ["locales/*.json"] |