-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 846 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
35
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "blockinversegpfa"
version = "0.1.0"
description = "A scikit-learn-compatible GPFA implementation using block matrix inversion."
authors = [
{name = "Brooks M. MUSANGU", email = "brooks_musangu@hms.harvard.edu"},
{name = "Jan DRUGOWITSCH", email = "jan_drugowitsch@hms.harvard.edu"}
]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy==2.2.1",
"scikit-learn==1.6.0",
"scipy==1.15.0",
"tqdm==4.67.1"
]
[project.optional-dependencies]
test = [
"pytest==7.3.1"
]
docs = [
"nbsphinx==0.9.6",
"numpydoc==1.8.0",
"Sphinx==8.1.3",
"sphinx-rtd-theme==3.0.2"
]
[project.urls]
Homepage = "https://github.com/CausalityInMotion/BlockInverseGPFA"