-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 894 Bytes
/
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
[tool.poetry]
name = "idea-bio"
version = "0.2.6"
description = "Integrated Differential Expression and Annotation"
authors = ["Noam Teyssier"]
license = "MIT"
readme = "README.md"
packages = [{ include = "idea" }]
repository = "https://github.com/noamteyssier/idea"
documentation = "https://idea-bio.readthedocs.io/en/latest/usage.html"
keywords = [
"bioinformatics",
"differential expression",
"annotation",
"networks",
]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.24.0"
pandas = "^2.0.3"
networkx = "^3.1"
ggetrs = "^0.1.87"
matplotlib = "^3.7.2"
beautifulsoup4 = "^4.12.2"
pvsvg = "^0.1.3"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pytest = "^7.4.0"
jupyterlab = "^4.0.2"
sphinx = "^6"
myst-parser = "^2.0.0"
sphinx-copybutton = "^0.5.2"
pydata-sphinx-theme = "^0.13.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"