-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
47 lines (43 loc) · 1.15 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
[project]
name = "inmoose"
version = "0.7.4-dev"
description = "InMoose: the Integrated Multi Omic Open Source Environment"
readme = "README.md"
authors = [
{name = "Guillaume Appé", email = "guillaume@epigenelabs.com"},
{name = "Maximilien Colange", email = "maximilien@epigenelabs.com"},
{name = "Léa Meunier", email = "lea@epigenelabs.com"},
{name = "Solène Weill", email = "solene@epigenelabs.com"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.9"
dependencies = [
"anndata",
"fastcluster",
"mpmath>=1.1.0",
"numpy<2.1.0",
"pandas",
"patsy",
"scipy>=1.11.0",
"seaborn",
"scikit-learn",
"statsmodels",
"matplotlib",
"yattag"
]
[project.urls]
Source = "https://github.com/epigenelabs/inmoose"
Documentation = "https://inmoose.readthedocs.io/en/latest/"
[project.optional-dependencies]
doc = [
"scanpy",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-repl",
]
[build-system]
requires = ["setuptools", "numpy>=2.0.0", "scipy", "Cython>=3.0.0", "wheel"]