forked from mestagtx/deepimpute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 843 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
from setuptools import setup, find_packages
VERSION = "1.2"
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="[email protected]",
url="",
entry_points={'console_scripts': ['deepImpute=deepimpute.deepImpute:deepImpute']},
license="MIT",
packages=find_packages(exclude=["examples", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[
"numpy",
"pandas>=1.0",
"scipy",
"sklearn",
"tensorflow>=2.0",
"configparser",
"keras"
],
)