-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (61 loc) · 1.4 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "xmp_editing"
version = "0.0.0"
description = "xmp_editing"
authors = ["Jason Krizan <34923517+orthorhombic@users.noreply.github.com>"]
license = "None"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10.8"
matplotlib = "^3.6.2"
pandas = "^1.5.2"
seaborn = "^0.12.2"
numpy = "^1.24.1"
slpp = { git = "https://github.com/SirAnthony/slpp" }
logzero = "^1.7.0"
pyexiv2 = "^2.8.1"
pyexiftool = "^0.5.5"
opencv-python = "^4.7.0.68"
rawpy = "^0.17.3"
[tool.poetry.dev-dependencies]
mypy = "^0.991"
flake8 = "^6.0.0"
black = "22.12.0"
flake8-bandit = "^4.1.1"
flake8-bugbear = "^22.12.6"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.3.0"
pep8-naming = "^0.13.3"
darglint = "^1.8.1"
reorder-python-imports = "^3.9.0"
pyupgrade = "^3.3.1"
poetryup = "^0.12.7"
bandit = "1.7.4"
jupyter = "^1.0.0"
ipykernel = "^6.19.4"
[tool.poetry.group.dev.dependencies]
autoflake = "^2.0.0"
autopep8 = "^2.0.1"
pre-commit = "^2.21.0"
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[tool.autopep8]
max_line_length = 88
select = ""
ignore = ["E203", "E501"]
in-place = true
recursive = true
aggressive = 3
[tool.autoflake]
check = false
remove-all-unused-imports = true
remove-unused-variables = true
in-place = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"