forked from ndcn/infer-subc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (52 loc) · 1.58 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
[project]
name = "infer-subc"
dynamic = ["version"]
requires-python = ">=3.7"
description = "A plugin that enables organelle segmentation"
readme = "README.md"
authors = [
{name = "Andy Henrie", email = "ergonyc@gmail.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
license = {file = "BSD-3-Clause"}
dependencies = [
'numpy',
'napari',
'aicssegmentation',
'aicsimageio >= 4.7.0',
'scipy', #>=1.1.0
'numpy', #>=1.15.1
'scikit-image', #>=0.18.0,<0.19.0
'pandas', #>=0.23.4
'centrosome',
'aicspylibczi>=3.1.1'
]
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "infer_subc/_version.py"
version_scheme = "post-release"
local_scheme = "dirty-tag"
#git_describe_command = "git describe --dirty --tags --long --match v* --first-parent"
#[tool.setuptools]
# packages = ["infer_subc"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
infer_subc = ["organelles_config/*"]
[tool.black]
line-length = 120