forked from Jieran-S/STpuppeteer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (46 loc) · 1.54 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "STpuppeteer"
version = "0.1.0"
description = "Simulate realistic spatial transcriptomics data for benchmarking deconvolution, segmentation, and transcript-assignment methods."
readme = "README.md"
authors = [{ name = "Jieran Sun", email = "jiersun99@gmail.com" }]
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=2.0",
"scipy>=1.10",
"pandas>=2.0",
"shapely>=2.0",
"geopandas>=1.0",
"matplotlib>=3.6",
"seaborn>=0.12",
"scikit-learn>=1.2",
"pyarrow>=12.0",
"fastparquet>=2024.0",
]
[project.urls]
Homepage = "https://github.com/bdsc-tds/STPuppeteer"
Documentation = "https://bdsc-tds.github.io/STPuppeteer"
Source = "https://github.com/bdsc-tds/STPuppeteer"
"Bug Tracker" = "https://github.com/bdsc-tds/STPuppeteer/issues"
[project.optional-dependencies]
spatialdata = ["spatialdata"]
dev = ["pytest", "build", "twine"]
docs = ["mkdocs>=1.5", "mkdocs-material>=9.5", "mkdocs-jupyter>=0.24"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["STpuppeteer*"]