-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
96 lines (89 loc) · 1.9 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "morphosnaker"
version = "0.0.1"
description = "Segment, extract, analyse"
authors = ["Tatan47 <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
tifffile = "^2024.5.22"
numpy = ">=1.22,<1.24"
termcolor = "^2.4.0"
pytest = "^8.2.2"
setuptools = "^70.2.0"
n2v = "^0.3.3"
# Platform-specific TensorFlow
tensorflow-macos = { version = "2.15.0", markers = "sys_platform == 'darwin'" }
tensorflow = { version = "2.15.0", markers = "sys_platform != 'darwin'" }
plotly = "^5.23.0"
kaleido = "0.2.1"
docformatter = "^1.7.5"
cellpose = "^3.0.10"
ipython = "^8.26.0"
jupyter = "^1.1.1"
ipykernel = "^6.29.5"
dash = "^2.18.1"
dash-bootstrap-components = "^1.6.0"
neo4j = "^5.24.0"
networkx = "^3.3"
memory-profiler = "^0.61.0"
py2neo = "^2021.2.4"
python-louvain = "^0.16"
napari = "^0.5.3"
orca = "^1.8"
selenium = "^4.25.0"
seaborn = "^0.13.2"
umap-learn = "^0.5.6"
pyvista = "^0.44.1"
hdbscan = "^0.8.38.post1"
torch = "^2.4.1"
torchvision = "^0.19.1"
torchaudio = "^2.4.1"
torch-geometric = "^2.6.1"
bioio = "^1.1.0"
scikit-image = "^0.19.0"
bioio-tifffile = "^1.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
flake8 = "^6.0.0"
mypy = "^1.3.0"
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
preview = true
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
strict_optional = true
implicit_reexport = true
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]