forked from nitzanlab/scPrisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 835 Bytes
/
setup.py
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
from setuptools import setup
requirements = [
"numpy",
"scanpy",
"numba",
"pandas",
"scikit-learn",
"scipy",
"seaborn",
"matplotlib",
"pytest", #TODO: For simplicity adding it to requirements.
]
gpu = ["torch"]
setup(
name="scPrisma",
version="0.0.5",
packages=["scPrisma"],
url="https://github.com/nitzanlab/scPrisma",
license="MIT License",
author="jonathankarin",
author_email="[email protected]",
maintainer="Haimasree Bhattacharya",
maintainer_email="[email protected]",
description="scPrisma: inference, filtering and enhancement of periodic signals in single-cell data using spectral template matching ",
python_requires=">=3",
install_requires=requirements,
extras_require={"gpu": gpu},
)