-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 748 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 748 Bytes
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
from setuptools import setup, find_packages
VERSION = "0.0.1"
setup(
name="deepimpute",
version=VERSION,
description="scRNA-seq imputation",
long_description=""" Deep learning (Tensorflow) based method for single cell RNA-seq data imputation. """,
classifiers=[],
keywords="Neural network, Deep Learning, scRNA-seq, single-cell, imputation",
author="Cedric Aridakessian",
author_email="carisdak@hawaii.edu",
url="",
license="MIT",
packages=find_packages(exclude=["examples", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[
"numpy",
"pandas",
"scipy",
"sklearn",
"tensorflow",
"configparser",
"keras"
],
)