-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.02 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cellmatch"
version = "0.1.0"
description = "Toolkit for 3D cell matching tasks."
authors = [
{ name = "Sebastian Stricker", email = "sebastian.stricker@iwr.uni-heidelberg.de" },
{ name = "Christoph Karg", email = "christoph.karg@mdc-berlin.de" },
{ name = "Lisa Hutschenreiter", email = "lisa.hutschenreiter@iwr.uni-heidelberg.de" }
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = [
"pylibmgm",
"numpy",
"scipy",
"numba",
"pandas",
"tqdm",
"optuna",
]
[project.urls]
Repository = "https://github.com/vislearn/cellmatch"
Issues = "https://github.com/vislearn/cellmatch/issues"
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"-s",
"--tb=short"
]