-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1.13 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["spot2cell"]
[project]
name = "spot2cell"
version = "0.0.2"
authors = [{ name="Miguel A. Ibarra-Arellano", email="c180l058j@mozmail.com"},]
license = {text = "AGPL-3.0-or-later"}
description = "From a X,Y list of detected spots, assigns each spot to a cell based on a segmentation mask"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3"
]
dependencies = [
"numpy",
"tifffile"
]
keywords = [
"cell",
"mask",
"spots",
"FISH",
"Xenium"
]
[project.scripts]
spots2cells = "spot2cell.scripts.spots2cells:main"
[project.urls]
Repository = "https://github.com/SchapiroLabor/spot2cell"
Homepage = "https://github.com/SchapiroLabor/spot2cell"
Issues = "https://github.com/SchapiroLabor/spot2cell/issues"