-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 917 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 917 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "simba_plus"
version = "0.1.1"
authors = [
{ name="Jayoung Ryu", email="jayoungkimryu@gmail.com" },
{ name="Junxi Feng", email="junxifeng0511@gmail.com"}
]
dependencies = [
"torch_geometric", "scvi-tools", "anndata", "lightning", "scikit-learn", "scipy<1.15", "matplotlib", "seaborn", "wandb", "tables", "papermill",
]
description = "SIMBA+"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
[project.urls]
Homepage = "https://github.com/pinellolab/simba-plus"
Issues = "https://github.com/pinellolab/simba-plus/issues"
[project.scripts]
"simba+" = "simba_plus.simba_plus:main"
[tool.setuptools]
packages = ["simba_plus"]
package-dir = {"" = "src"}