-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
68 lines (58 loc) · 1.33 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 = "mesh2vec"
version = "0.0.2"
authors = ["Renumics GmbH <[email protected]>"]
packages = [
{ include = "mesh2vec" }
]
readme = "README.md"
description = "mesh2vec"
[tool.poetry.dependencies]
python = ">=3.8, <3.12"
scipy = "^1.9.1"
pandas = "^1.4.4"
trimesh = "^3.14.1"
pyglet = "^1.5.26"
lasso-python = "^1.5.2.post1"
networkx = "^2.8.6"
loguru = "^0.6.0"
notebook = "^6.5.2"
plotly = "^5.11.0"
joblib = "^1.2.0"
pillow = "^10.0.1"
py = "^1.11.0"
cleo = "^2.0.1"
werkzeug = "^3.0.3"
ipython = "^8.10.0"
numba = "^0.58.1"
igraph = "^0.11.3"
jupyter-server = "^2.11.2"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
black = "^24.3.0"
[tool.poetry.group.dev.dependencies]
sphinx = "^5.1.1"
sphinx-autobuild = "^2021.3.14"
sphinx-rtd-theme = "^1.0.0"
sphinx-gallery = "^0.11.1"
pylint = "^2.15.2"
mypy = "^0.971"
check-wheel-contents = "^0.3.4"
pip-audit = "^2.4.4"
[tool.poetry-dynamic-versioning]
enable = true
dirty = true
[tool.black]
line-length = 98
[tool.pylint.format]
max-line-length = 98
good-names = "f,i,j,k,x,y,z,w,up,ex,db,df,v1,v2,e,v,hg,N"
[tool.pylint.similarities]
ignore-imports = true
min-similarity-lines= 4
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
[build-system]
requires = ["poetry-core>=1.2.2", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"