generated from rochacbruno/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
79 lines (69 loc) · 1.73 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
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "scdataloader"
version = "1.6.5"
description = "a dataloader for single cell data in lamindb"
authors = [
{name = "jkobject", email = "[email protected]"}
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10,<3.11"
keywords = ["scRNAseq", "dataloader", "pytorch", "lamindb", "scPRINT"]
dependencies = [
"numpy>=1.26.0",
"lamindb[bionty]==0.76.12",
"cellxgene-census>=0.1.0",
"torch==2.2.0",
"lightning>=2.0.0",
"anndata>=0.9.0",
"matplotlib>=3.5.0",
"seaborn>=0.11.0",
"ipykernel>=6.20.0",
"torchdata>=0.5.0",
"biomart>=0.9.0",
"pandas>=2.0.0",
"leidenalg>=0.8.0",
"django>=4.0.0",
"scikit-misc>=0.5.0",
"palantir>=1.3.3",
"harmonypy>=0.0.10",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"coverage>=7.3.2",
"pytest-cov>=4.1.0",
"ruff>=0.6.4",
"gitchangelog>=3.0.4",
"mkdocs>=1.5.3",
"mkdocs-git-revision-date-localized-plugin>=1.0.0",
"mkdocstrings>=0.22.0",
"mkdocs-git-authors-plugin>=0.4.0",
"mkdocs-jupyter>=0.2.0",
"mkdocstrings-python>=0.10.0"
]
[tool.ruff]
# Set the maximum line length to 88.
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501", "E203", "E266", "E265", "F401", "F403", "E722", "E741", "E731", "E721"]
[project.urls]
repository = "https://github.com/jkobject/scDataLoader"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
only-include = [
"/scdataloader",
]
[tool.hatch.build.targets.wheel]
only-include = [
"/scdataloader",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.uv.sources]
scdataloader = { workspace = true }
[scripts]
scdataloader = 'scdataloader.__main__:main'