-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 913 Bytes
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
[project]
name = "moDiNA"
version = "0.0.1"
description = "Multi-Omics Differential Network Analysis"
authors = [{name = "Andrea Raithel", email = "andrea.raithel@tum.de"}]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11,<3.12"
keywords = ["multi-omics", "network", "analysis"]
packages = [{include = "modina", from = "src"}]
dependencies = [
"numpy >=1.26.4",
"pandas >=2.2.3",
"scipy >=1.11.0",
"networkx >=3.5",
"igraph >=1.0.0",
"napypi >=1.0.2"
]
[project.urls]
homepage = "https://github.com/DyHealthNet/moDiNA.git"
repository = "https://github.com/DyHealthNet/moDiNA.git"
documentation = "https://dyhealthnet.github.io/moDiNA"
issues = "https://github.com/DyHealthNet/moDiNA/issues"
[project.optional-dependencies]
dev = [
"pytest >=7.4",
"sphinx >=7.1"
]
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"