-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
66 lines (56 loc) · 1.6 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "spatial_factorization"
dynamic = ["version"]
authors = [
{ name="Will Townes", email="[email protected]" },
]
dependencies = [
"anndata>=0.7",
"dill>=0.3",
"numpy>=1.19",
"pandas>=1.2",
"scipy>=1.7",
"scikit-learn>=0.24",
"setuptools>=42",
"squidpy>=1.1",
"tensorflow>=2.17",
"tensorflow_probability>=0.13",
"tf_keras",
]
description = "Spatially-aware probabilistic factor models"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[project.urls]
"Homepage" = "https://github.com/willtownes/spatial-factorization-py"
"Bug Tracker" = "https://github.com/willtownes/spatial-factorization-py/issues"
[tool]
[tool.hatch.version]
path = "spatial_factorization/__about__.py"
[tool.hatch.build.targets.sdist]
include = [
"spatial_factorization/*.py",
"spatial_factorization/utils/*.py",
]
[tool.hatch.build.targets.wheel]
include = [
"spatial_factorization/*.py",
"spatial_factorization/utils/*.py",
]
[tool.pytest.ini_options]
testpaths = ["tests"]