-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cell-flower"
version = "1.0.1"
authors = [
{ name="Josef Hoppe", email="[email protected]" },
]
description = "Cell FLOWer processes edge flows using cell complexes."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'scikit-learn >= 1.2.0',
'numpy >= 1.20.0',
'scipy >= 1.10.0'
]
[project.optional-dependencies]
test = [
'pandas',
'pytest-cov',
'networkx'
]
[project.urls]
"Homepage" = "https://github.com/josefhoppe/cell-flower"
"Bug Tracker" = "https://github.com/josefhoppe/cell-flower/issues"
[tool.hatch.build]
exclude = ["examples", "readme_src"]
[tool.pytest.ini_options]
addopts = "-ra --cov --cov-report html --cov-report term-missing --cov-fail-under 75"
testpaths = [
"tests",
"tests/cell_flower"
]
pythonpath = ["src"]
[tool.coverage.run]
source = ["src"]