-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.22 KB
/
pyproject.toml
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
47
48
49
50
51
[tool.poetry]
name = "google-photos-archiver"
version = "0.0.0"
description = "Archives the contents of your Google Photos library to disk"
authors = ["Scott Ouellette <[email protected]>"]
maintainers = ["Scott Ouellette <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/scottx611x/google-photos-archiver"
keywords = [
"Google Photos",
"Photo Backup",
"Media Arcvhival",
"Data Backup"
]
exclude = ["tests"]
[tool.poetry.dependencies]
python = "^3.8.0"
requests = "2.25.1"
click = "7.1.2"
google-auth-oauthlib = "^0.4.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.10.1"
flake8 = "^3.8.4"
black = "^20.8b1"
pytest-socket = "^0.3.5"
pytest-mock = "^3.4.0"
isort = "^5.6.4"
pylint = "^2.6.0"
[tool.poetry.scripts]
google-photos-archiver = 'google_photos_archiver.cli:cli'
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.semantic_release]
version_variable = "pyproject.toml:tool.poetry.version"
version_toml = "pyproject.toml:tool.poetry.version"
branch = "main"
version_source = "tag"
upload_to_pypi = false
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"