This repository has been archived by the owner on Oct 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (53 loc) · 1.69 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
[tool.poetry]
name = "pygpseq"
version = "3.4.1"
description = "A GPSeq image analysis package"
authors = ["Gabriele Girelli <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ggirelli/pygpseq"
repository = "https://github.com/ggirelli/pygpseq"
keywords = ["microscopy", "image", "analysis", "bioimaging", "nucleus", "segmentation", "conversion"]
classifiers = [
'Development Status :: 5 - Production/Stable',
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
]
include = ["CHANGELOG.md", "LICENSE"]
[tool.poetry.dependencies]
python = ">=3.6,<3.7"
ggc = "0.0.3"
czifile = "0.1.5"
Cython = "0.29.5"
Jinja2 = "2.11.3"
joblib = "0.11"
matplotlib = "2.2.2"
nd2reader = "3.1.0"
numpy = "1.16.1"
pandas = "0.24.1"
scipy = "1.2.1"
scikit-image = "0.14.2"
seaborn = "0.9.0"
tifffile = "2019.2.10"
tqdm = "4.31.1"
weasyprint = "45"
[tool.poetry.dev-dependencies]
black = "18.9b0"
[tool.poetry.scripts]
"czi_to_tiff" = "pygpseq.scripts.czi_to_tiff:run"
"nd2_to_tiff" = "pygpseq.scripts.nd2_to_tiff:run"
"gpseq_anim" = "pygpseq.scripts.gpseq_anim:run"
"gpseq_fromfish" = "pygpseq.scripts.gpseq_fromfish:run"
"gpseq_fromfish_merge" = "pygpseq.scripts.gpseq_fromfish_merge:run"
"tiff_auto3dseg" = "pygpseq.scripts.tiff_auto3dseg:run"
"tiff_findoof" = "pygpseq.scripts.tiff_findoof:run"
"tiff_split" = "pygpseq.scripts.tiff_split:run"
"tiff_desplit" = "pygpseq.scripts.tiff_desplit:run"
"tiffcu" = "pygpseq.scripts.tiffcu:run"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"