-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 776 Bytes
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
[tool.poetry]
name = "msckf_tutorial"
version = "0.1.0"
description = ""
authors = ["Edwinem <735010+Edwinem@users.noreply.github.com>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
numpy = "^1.21.0"
scipy = "^1.7.0"
moderngl-window = "^2.4.0"
pyrr = "^0.10.3"
click = "^8.0.1"
transforms3d = "^0.3.1"
opencv-python = "^4.5.2"
moderngl = "^5.6.4"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
yapf = "^0.31.0"
isort = "^5.9.1"
poetry2setup = "^1.0.0"
[build-system]
# We need to disable setuptools 50 as it breaks our setup.py install
requires = [
"setuptools!=50.0",
"wheel",
"poetry-core>=1.0.0"
]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
format = "scripts.scripts:format"
generate_setup_py = "scripts.scripts:generate_setup_py"