-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.61 KB
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
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "switchtfi"
version = "0.1.0"
description = "Implementation of the SwitchTFI method as presented in: https://doi.org/10.1101/2025.01.20.633856"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Paul Martini", email = "paul.martini@fau.de" }
]
requires-python = ">=3.9, <3.13"
dependencies = [
"numpy >=1.26.4",
"pandas >=2.2.3",
"scipy >=1.14.1",
"scikit-learn >=1.5.2",
"statsmodels >=0.14.1",
"matplotlib >=3.5.2",
"seaborn >=0.13.2",
"anndata >=0.10.7",
"scanpy >=1.9.3",
"igraph >=0.11.4",
"magic-impute >=3.0.0",
"leidenalg >=0.10.2",
"networkx >=3.4",
]
keywords = ["bioinformatics", "single-cell", "gene-regulation", "network-analysis"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Source = "https://github.com/bionetslab/SwitchTFI"
Documentation = "https://github.com/bionetslab/SwitchTFI#readme"
Issues = "https://github.com/bionetslab/SwitchTFI/issues"
[tool.setuptools.packages.find]
include = ["switchtfi*"]
exclude = ["switchtfi.d*", "switchtfi.data", "tests*", "docs*"]
[tool.setuptools]
include-package-data = false # makes MANIFEST.in exclusions respected