-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
50 lines (39 loc) · 1.21 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
[tool.poetry]
name = "cameratransform"
version = "1.2"
description = "Projects coordinates from 2D to 3D and can fit camera parameters"
authors = ["rgerum <14153051+rgerum@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "cameratransform"}]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.23.4"
pandas = "^1.5.1"
scipy = "^1.9.3"
tqdm = "^4.64.1"
opencv-python = {version = "^4.6.0.66", extras = ["projecting_top_view"]}
matplotlib = {version = "^3.6.2", extras = ["projecting_top_view"]}
pillow = {version = ">=9.3,<11.0", extras = ["exif_extraction"]}
requests = {version = "^2.28.1", extras = ["exif_extraction"]}
nbsphinx = {version = "^0.9.2", extras = ["docs"]}
sphinx-rtd-theme = { version = "^1.2.2", extras = ["docs"]}
[tool.poetry.group.dev.dependencies]
hypothesis = "^6.56.4"
mock = "^4.0.3"
coverage = "^6.5.0"
coveralls = "^3.3.1"
pytest = "^7.2.0"
[tool.poetry.group.gui.dependencies]
qtpy = "^2.3.1"
pyqt5 = "^5.15.9"
qimage2ndarray = "^1.10.0"
[tool.poetry.group.docs.dependencies]
jupyter = "^1.0.0"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"