forked from labsyspharm/vae
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (46 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
49 lines (46 loc) · 1.34 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "vae"
version = "0.0.4"
description = "Generate cropped image patches from a multi-channel TIF image, train a VAE model, and perform clustering on latent space image patch encodings."
readme = "README.md"
license = "MIT"
keywords =['spatial proteomics, variational autoencoder (VAE), artificial intelligence, tissue phenotyping']
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization'
]
authors = ["Gregory J. Baker <gregory_baker2@hms.harvard.edu>"]
homepage = "https://github.com/labsyspharm/vae"
[tool.poetry.dependencies]
python = ">=3.9"
hdbscan = "*"
umap-learn = "*"
keras = "*"
natsort = "*"
pandas = "*"
pyarrow = "*"
pyyaml = "*"
seaborn = "*"
tifffile = "*"
scikit-image = "*"
tensorflow = "2.15.0"
tensorflow-probability = "0.23.0"
zarr = "<3.0.0"
cellcutter = "*"
opencv-python = "*"
dask = "*"
ome-types = "*"
pytorch = "*"
pytorch-lightning = "*"
segmentation-models-pytorch = "*"
[tool.poetry.scripts]
vae = "vae.scripts.__main__:main"