forked from SindiLab/N-ACT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.28 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
32
33
34
35
36
37
38
39
"""Setup file for package installation."""
from setuptools import setup, find_packages
with open("README.md", mode="r", encoding="utf-8") as readme_file:
readme = readme_file.read()
setup(
name="nact",
version="0.1.0",
author="A. Ali Heydari, Oscar Davalos",
author_email="[email protected]",
description=
"N-ACT: Automatic Cell-Type classification using Neural Attention models",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/SindiLab/N-ACT",
download_url="https://github.com/SindiLab/N-ACT",
packages=find_packages(),
install_requires=[
"tqdm>=4.47.0",
"adabelief-pytorch>=0.2.0",
"torch>=1.13",
"scanpy>=1.7.0",
"tensorboardX>=2.1",
"prettytable",
],
classifiers=[
"Development Status :: 1 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT Software License",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
":: Bioinformatics :: Deep Learning"
],
keywords=
"Single Cell RNA-seq, Automatic Classification, Attention-Neural Networks,"
"Deep Learning, Transfer Learning")