-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 862 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 = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "simstpy"
version = "0.0.3"
description = "Simulating spatially-resolved omics data using python"
authors = [
{name = "Zhijian Li", email = "lzj1769@gmail.com"}
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research"
]
requires-python = ">= 3.8"
dependencies = [
"scikit-learn",
"anndata",
"numpy",
"scipy",
"scanpy",
"squidpy",
"pandas",
"muon"
]
[project.urls]
Source = "https://github.com/lzj1769/simstpy"
Documentation = "https://simstpy.readthedocs.io/en/latest/"