-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.01 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
[tool.black]
line-length = 79
exclude = "scripts/example.py|.venv"
[tool.isort]
profile = "black"
line_length = 79
skip_glob = "*.md"
filter_files = true
skip = ["scripts/example.py"]
[tool.poetry]
name = "flirextractor"
version = "1.0.2"
description = "An efficient GPLv3-licensed Python package for extracting temperature data from FLIR IRT images."
authors = ["Alois Klink <[email protected]>"]
license = "GPL-3.0+"
readme = "README.md"
repository = "https://github.com/aloisklink/flirextractor"
homepage = "https://github.com/aloisklink/flirextractor"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera",
]
[tool.poetry.dependencies]
python = "^3.6"
pyexiftool = "^0.1.1"
pillow = ">=6.2 <=8.0.0"
numpy = "^1.17"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
mypy = "^0.782"
flake8 = "^3.7"
pytest = "^5.2"
tomlkit = "^0.7.0"
isort = "^5.0.0"
pre-commit = "^2.0.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"