-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
53 lines (50 loc) · 1.29 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "CyLinter"
version = "0.0.49"
description = "CyLinter: An Interactive Image Segmentation Filter for Multiplex Microscopy"
readme = "README.md"
license = "MIT"
keywords =['CyLinter multiplex microscopy quality control']
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Framework :: napari',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Visualization'
]
authors = ["Gregory J. Baker <[email protected]>"]
homepage = "https://github.com/labsyspharm/cylinter"
[tool.poetry.dependencies]
cellcutter = "*"
hdbscan = "*"
joblib = "*"
magicgui = "*"
matplotlib = "<3.6"
napari = { version = "*", extras = ["all"] }
numpy = "*"
natsort = "*"
numba = "*"
pandas = "*"
pyarrow = "*"
pyqt = "*"
pyyaml = "*"
qtpy = "*"
scikit-image = "*"
scikit-learn = "<=1.2.2"
seaborn = "*"
tifffile = "*"
umap-learn = "*"
zarr = "*"
svglib = "*"
pypdf2 = "*"
imagecodecs = "*"
opencv-python = "*"
[tool.poetry.scripts]
cylinter = "cylinter.cylinter:main"