|
a |
|
b/pyproject.toml |
|
|
1 |
[project] |
|
|
2 |
name = "inmoose" |
|
|
3 |
version = "0.7.4-dev" |
|
|
4 |
description = "InMoose: the Integrated Multi Omic Open Source Environment" |
|
|
5 |
readme = "README.md" |
|
|
6 |
authors = [ |
|
|
7 |
{name = "Guillaume Appé", email = "guillaume@epigenelabs.com"}, |
|
|
8 |
{name = "Maximilien Colange", email = "maximilien@epigenelabs.com"}, |
|
|
9 |
{name = "Léa Meunier", email = "lea@epigenelabs.com"}, |
|
|
10 |
{name = "Solène Weill", email = "solene@epigenelabs.com"}, |
|
|
11 |
] |
|
|
12 |
classifiers = [ |
|
|
13 |
"Programming Language :: Python :: 3", |
|
|
14 |
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", |
|
|
15 |
"Topic :: Scientific/Engineering :: Bio-Informatics", |
|
|
16 |
] |
|
|
17 |
requires-python = ">=3.9" |
|
|
18 |
dependencies = [ |
|
|
19 |
"anndata", |
|
|
20 |
"fastcluster", |
|
|
21 |
"mpmath>=1.1.0", |
|
|
22 |
"numpy<2.1.0", |
|
|
23 |
"pandas", |
|
|
24 |
"patsy", |
|
|
25 |
"scipy>=1.11.0", |
|
|
26 |
"seaborn", |
|
|
27 |
"scikit-learn", |
|
|
28 |
"statsmodels", |
|
|
29 |
"matplotlib", |
|
|
30 |
"jinja2" |
|
|
31 |
] |
|
|
32 |
|
|
|
33 |
[project.urls] |
|
|
34 |
Source = "https://github.com/epigenelabs/inmoose" |
|
|
35 |
Documentation = "https://inmoose.readthedocs.io/en/latest/" |
|
|
36 |
|
|
|
37 |
[project.optional-dependencies] |
|
|
38 |
doc = [ |
|
|
39 |
"scanpy", |
|
|
40 |
"sphinx", |
|
|
41 |
"sphinx_rtd_theme", |
|
|
42 |
"sphinxcontrib-repl", |
|
|
43 |
] |
|
|
44 |
|
|
|
45 |
[build-system] |
|
|
46 |
requires = ["setuptools", "numpy>=2.0.0", "scipy", "Cython>=3.0.0", "wheel"] |