-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.07 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
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "scExtract"
version = "0.2.0"
description = "Automatically processing single-cell data from articles"
readme = "README.md"
authors = [
{name = "Yuxuan George Wu", email = "yxwucq@outlook.com"},
]
keywords = ["single-cell", "data-processing", "bioinformatics"]
dependencies = [
"scanpy",
"openai>=1.17.0",
"defusedxml>=0.7.1",
"harmonypy>=0.0.9",
"networkx",
"oaklib",
"colorama",
"leidenalg",
"louvain",
"mygene",
"pyfiglet",
"pypdf",
"tabulate",
"termcolor",
"tqdm",
"anthropic>=0.25.1"
]
[project.optional-dependencies]
external = ["singler>=0.4.1",
"celldex",
"singlecellexperiment>=0.4.4",
"celltypist",
]
gpu = ["cupy-cuda12x",
"pylibraft-cu11",
]
[project.scripts]
scExtract = "scextract.main:main"
[ project.urls ]
Repository = "https://github.com/yxwucq/scExtract.git"
[tool.setuptools.packages.find]
where = ["src"]
include = ["scextract*"]
exclude = ["tests*"]