-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.67 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tools.setuptools]
packages = ["colorizer_data"]
[tool.setuptools.packages.find]
where = ["."]
include = ["colorizer_data"]
namespaces = false
[project]
name = "colorizer_data"
version = "1.5.2"
authors = [
{name = "", email = "danielt@alleninstitute.org"},
{name = "", email = "peyton.lee@alleninstitute.org"},
]
description = "Utilities to convert data for viewing in Timelapse Feature Explorer"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"bioio >= 1.0.2",
"bioio-ome-tiff >= 1.0.0",
"bioio-tifffile",
"bioio-ome-zarr",
"dataclasses-json",
"numpy",
"pandas",
"pillow",
"pyarrow",
"scikit-image",
"requests",
]
[project.optional-dependencies]
# To install, run `pip install -e '.[dev]'`
dev = [
'pytest-xdist',
'bump-my-version',
]
[project.urls]
Homepage = "https://github.com/allen-cell-animated/colorizer-data"
Issues = "https://github.com/allen-cell-animated/colorizer-data/issues"
[project.scripts]
convert_nucmorph_data = "colorizer_data.bin.example_scripts.convert_nucmorph_data:main"
convert_emt_migration_data = "colorizer_data.bin.example_scripts.convert_emt_migration_data:main"
convert_emt_nuclear_data = "colorizer_data.bin.example_scripts.convert_emt_nuclear_data:main"
convert_emt_h2b_labelfree = "colorizer_data.bin.example_scripts.convert_emt_h2b_labelfree:main"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/