-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python package installs and imports properly
- Loading branch information
Showing
3 changed files
with
14 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[build-system] | ||
requires = ["scikit-build-core>=0.3.3", "pybind11"] | ||
build-backend = "scikit_build_core.build" | ||
# build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "scdemon" | ||
|
@@ -10,7 +11,18 @@ authors = [{name = "Benjamin James", email = "[email protected]"}, | |
{name = "Carles Boix", email = "[email protected]"}] | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.7" | ||
dependencies = ["numpy", "pandas", "scipy", "tqdm", "igraph", "umap-learn", "leidenalg", "scikit-learn"] | ||
dependencies = [ | ||
"numpy", "pandas", | ||
"scipy", "tqdm", | ||
"igraph", "umap-learn", | ||
"leidenalg", "scikit-learn", | ||
# Added from original modules, can prune: | ||
"scanpy", "anndata", | ||
"seaborn", "matplotlib", | ||
"fbpca", "gprofiler-official", | ||
"python-igraph", "adjustText", | ||
"numba" | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://scdemon.readthedocs.io/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters