-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 904 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
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "immich-carddav-sync"
version = "0.0.1"
description = ""
authors = ["Daniele Ricci <[email protected]>"]
readme = "README.md"
packages = [
{include = "immich_carddav_sync"},
]
include = ["immich_carddav_sync/immich_client/py.typed"]
[tool.poetry.dependencies]
python = "^3.11"
#immich_client = "1.74.0"
vdirsyncer = "0.19.2"
vobject = "0.9.6.1"
pydantic-settings = "^2.0.0"
httpx = ">=0.20.0,<0.25.0"
attrs = ">=21.3.0"
python-dateutil = "^2.8.0"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
[tool.poetry.scripts]
immich-carddav-sync = 'immich_carddav_sync.main:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target_version = ['py38', 'py39', 'py310', 'py311']
exclude = '''
(
/(
| \.git
| \.venv
| \.mypy_cache
)/
)
'''
[tool.isort]
line_length = 120
profile = "black"