-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (39 loc) · 1.24 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]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
name = "SpaceCat"
dynamic = ["version"]
description = "Generate a Spatial Catalogue from multiplexed imaging experiments."
readme = "README.md"
requires-python = ">=3.10,<3.12"
license = { file = "LICENSE" }
authors = [{ name = "Angelo Lab", email = "[email protected]" }]
maintainers = [
{ name = "Noah Frey Greenwald", email = "[email protected]" },
{ name = "Cameron Laura Sowers", email = "[email protected]" },
{ name = "Jolene Rank", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
urls.Source = "https://github.com/angelolab/SpaceCat"
urls.Home-page = "https://github.com/angelolab/SpaceCat"
dependencies = [
'anndata',
'alpineer==0.1.12',
'ark-analysis==0.7.2',
'numpy',
'pandas',
'scipy',
'squidpy'
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/SpaceCat"]