-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.03 KB
/
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
31
import setuptools
setuptools.setup(
name="hd_ae",
version="0.0.2",
author="Ethan Weinberger",
author_email="[email protected]",
description="For producing pretrained embedding models of scRNA-seq data.",
long_description="""
HD-AE (Hilbert-Schmidt Deconfounded Autoencoder is a deep learning model
traine to produce integrated embedidngs of scRNA-seq data. Pretrained HD-AE
models can be used to embed new batches of data at test time, without needing
to retrain the model.
""",
long_description_content_type="text/markdown",
url="https://github.com/suinleelab/hd_ae",
packages=['hd_ae'],
install_requires=[
'torch',
'pytorch-lightning',
'scanpy',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
],
python_requires='>=3.6',
)