-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 911 Bytes
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
[tool.poetry]
name = "immich-scripts"
version = "0.1.0"
description = ""
authors = ["Marvin Davieds <marvin.davieds@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
pyyaml = "^6.0.1"
openapi-client = { path = "generated/openapi_client" }
rich = "^13.7.0"
[tool.poetry.scripts]
album2external = "immich_scripts.album2external:cli"
fix_modified_date = "immich_scripts.fix_modified_date:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
testcontainers = "^3.7.1"
types-pyyaml = "^6.0.12.12"
mypy = "^1.8.0"
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
include_trailing_comma = true
float_to_top = true
[tool.mypy]
python_version = "3.11"
follow_imports = "normal"
files = []
disallow_any_generics = true
disallow_untyped_defs = true
[build-system]
requires = ["poetry-core>=1.7.1"]
build-backend = "poetry.core.masonry.api"