Skip to content

Commit f73170b

Browse files
committed
Draft implementation of CellMapper
1 parent 79d1094 commit f73170b

File tree

12 files changed

+998
-160
lines changed

12 files changed

+998
-160
lines changed

pyproject.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ classifiers = [
2424
]
2525
dependencies = [
2626
"anndata",
27+
"numpy",
28+
"packaging",
29+
"pandas",
30+
"pynndescent",
31+
"rich",
32+
"scanpy",
33+
"scikit-learn",
34+
"scipy",
2735
# for debug logging (referenced from the issue template)
2836
"session-info2",
2937
]

src/cellmapper/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from importlib.metadata import version
22

3-
from . import pl, pp, tl
3+
from .cellmapper import CellMapper
4+
from .logging import logger
45

5-
__all__ = ["pl", "pp", "tl"]
6+
__all__ = ["logger", "CellMapper"]
67

78
__version__ = version("cellmapper")

0 commit comments

Comments
 (0)