-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 856 Bytes
/
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
[tool.poetry]
name = "sharded-google-photos"
version = "0.2.4"
description = "A tool to shard photos across multiple Google Photo accounts"
authors = ["Emilio K <[email protected]>"]
license = "GNU General Public License v3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
google-api-python-client = "^2.122.0"
google-auth-oauthlib = "^1.2.0"
backoff = "^2.2.1"
python-magic = "^0.4.27"
tqdm = "^4.66.2"
event-bus = "^1.0.2"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
pytest = "^8.1.1"
flake8 = "^7.0.0"
flake8-bugbear = "^24.2.6"
coverage = "^7.4.4"
pytest-mock = "^3.12.0"
requests-mock = "^1.11.0"
freezegun = "^1.4.0"
mypy = "^1.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 50