-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·88 lines (79 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
executable file
·88 lines (79 loc) · 2.26 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=69", "wheel", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "spatialfusion"
description = "SpatialFusion: Deep learning models for spatial omics data analysis."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Yates, Josephine", email = "yatesjos@broadinstitute.org" }]
maintainers = [{ name = "Yates, Josephine", email = "yatesjos@broadinstitute.org" },
{name = "Camp, Sabrina", email = "scamp@broadinstitute.org"}]
keywords = ["spatial omics", "deep learning", "bioinformatics", "multi-omics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
# Keep accelerator stacks out of here; provide extras below instead.
dependencies = [
"numpy>=1.24,<3.0",
"pandas>=2.0,<3.0",
"scipy>=1.10,<2.0",
"pyarrow>=12",
"tqdm>=4.65",
"hydra-core>=1.3",
"omegaconf>=2.3",
"scanpy>=1.9,<2.0",
"anndata>=0.10,<0.12",
"matplotlib>=3.7",
"Pillow>=9.5",
"tifffile>=2023.7.10",
"scikit-learn>=1.2",
"seaborn>=0.12",
"shapely>=2.0",
"tensorboard>=2.12",
"imagecodecs>=2023.1.23",
"networkx>=3.2,<3.4",
"h5py>=3.8"
]
version = "0.1.0"
[project.optional-dependencies]
# Choose one of these during install; do NOT include in default deps.
cpu = [
"torch>=2.3,<2.6",
"torchvision>=0.18,<0.21"
]
docs = [
"sphinx>=7.0",
"myst-parser>=2.0",
"sphinx-rtd-theme>=2.0"
]
dev = [
"pytest>=8",
"pytest-cov>=5",
"ruff>=0.5",
"black>=24.0",
"pre-commit>=3.6"
]
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
spatialfusion = [
"data/**/*.pt"
]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q"
testpaths = ["tests"]
filterwarnings = ["ignore::DeprecationWarning"]
[project.urls]
Homepage = "https://github.com/your-org/spatialfusion"
Documentation = "https://readthedocs.org/projects/your-docs"
Issues = "https://github.com/your-org/spatialfusion/issues"