-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (38 loc) · 919 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
[tool.poetry]
name = "pydslr"
version = "0.1.0"
description = "Abstraction on top of gphoto2 to allow quick and easy and type-safe operation of cameras."
authors = ["Niklas Frühauf <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.9"
tqdm = "^4.66.4"
gphoto2 = "^2.5.0"
pytz = "^2024.1"
psutil = "^5.9.8"
pydantic = "^2.7.2"
fastapi = "^0.111.0"
black = "^24.4.2"
numpy = "^1.26.4"
pillow = "^10.3.0"
[tool.poetry.group.dev.dependencies]
types-tqdm = "^4.66.0.20240417"
pylint = "^3.2.2"
mypy = "^1.10.0"
types-psutil = "^5.9.5.20240516"
types-pytz = "^2024.1.0.20240417"
black = "^24.4.2"
isort = "^5.13.2"
[tool.pylint]
max-line-length = 150
# poetry run pylint **/*.py
[tool.mypy]
# poetry run mypy . --explicit-package-bases
[tool.black]
line-length = 150
# poetry run black .
[tool.isort]
# poetry run isort .
profile = "black"
line_length = 150
[build-system]
requires = ["poetry"]