-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·34 lines (31 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
executable file
·34 lines (31 loc) · 1.16 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
[project]
name = "cellnexuspy"
version = "0.3.0"
description = "Provides access to a copy of the Human Cell Atlas, but with harmonised metdata. This allows for uniform querying across numerous datasets within the Atlas using common fields such as cell type, tissue type, and patient ethnicity. Usage involves first querying the metadata table for cells of interest, and then downloading the corresponding cells into a anndata object."
authors = [
{name = "Stefano Mangiola", email = "stefano.mangiola@adelaide.edu.au"}
]
maintainers = [
{name = "Juan Henao", email = "juanhenao.sanchez@gmail.com"}
]
license = {text = "GPL-3"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pandas (>=2.2.3,<3.0.0)",
"tqdm (>=4.67.1,<5.0.0)",
"anndata (>=0.11.4,<0.12.0)",
"requests (>=2.32.3,<3.0.0)",
"appdirs (>=1.4.4,<2.0.0)",
"duckdb (>=1.2.2,<2.0.0)",
"nbconvert (>=7.12.0,<8.0.0)",
"notebook (>=6.5.6,<8.0.0)",
]
[tool.poetry]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
jupyter = "^1.1.1"
jupyter-contrib-nbextensions = "^0.7.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"