-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 909 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
47
[tool.poetry]
name = "assignment"
version = "0.1.0"
description = ""
authors = ["Tom Stein <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10, <3.12"
gdpc = {git = "https://github.com/avdstaaij/gdpc", tag = "v6.0.1"}
tqdm = "^4.65.0"
# dependencies of gdpc which were not detected automatically
# matplotlib = "~3.6.2"
# more-itertools = "~9.0.0"
# NBT = "~1.5.1"
# numpy = "~1.19.3"
# opencv_python = "~4.5.1.48"
# PyGLM = "~2.7.0"
# pyglm-typing = "~0.2.1"
# requests = "~2.22.0"
# scikit-image = "~0.19.3"
# scipy = "~1.9.3"
# termcolor = "~2.1.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.254"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 99
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I001",
]
[tool.ruff.isort]
known-first-party = ["assignment"]