-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.49 KB
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
[project]
name = "codex_preprocessing"
version = "0.1"
requires-python = ">=3.11"
dependencies = [
# "tqdm",
# "scipy",
# "hydra-core",
# "hydra_colorlog",
# "pandas",
# "matplotlib",
# "tensorflow[and-cuda]",
# # "cudnn",
# "torch",
# "torchvision",
# "scikit-learn",
# "tifffile<=2025.1.10",
# "scikit-image<=0.24.0",
# "PyWavelets",
# "openpyxl",
# "flowdec",
# "ashlar",
# "jax",
# "jaxlib",
# "hyperactive==4.4.0",
# "pydantic<3.0.0",
# "rich",
# "tabulate",
# "cucim-cu12",
# "cupy-cuda12x",
# "dask",
# "dask-image",
# "stackview",
# "opencv-python-headless",
# "sopa",
# "cellpose",
# "instanseg-torch",
# "monai",
# "git+https://github.com/facebookresearch/detectron2.git",
# "git+https://github.com/fbcotter/pytorch_wavelets",
# pip install torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/cu124
# Compile Deformable-DETR CUDA operators
# git clone https://github.com/fundamentalvision/Deformable-DETR.git
# cd Deformable-DETR
# cd ./models/ops
# sh ./make.sh
]
# [project.scripts]
# codex_preprocess = "main:main"
# codex_segment = "scripts.run_segmentation:main"
[tool.setuptools.packages]
find = { where = ["src", "."], include = ["codex_preprocessing*"] }
[build-system]
requires = ["setuptools>=67.8.0"]
build-backend = "setuptools.build_meta"
[tool.codespell]
skip = '.git,*.pdf,*.svg'