forked from wangshenguiuc/OnClass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 800 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
setup(
name = "OnClass",
version = "1.2",
keywords = ("pip", "single cell", "OnClass"),
description = "Single Cell Annotation based on the Cell Ontology",
long_description = "Unifying single-cell annotations based on the Cell Ontology",
license = "MIT Licence",
url = "https://github.com/wangshenguiuc/OnClass",
author = "Sheng Wang",
author_email = "swang91@uw.edu",
packages = find_packages(),
include_package_data = True,
platforms = "any",
install_requires=[
'sentence-transformers',
'anndata>=0.6.4',
'fbpca>=1.0',
'umap-learn>=0.3.10',
'matplotlib>=2.0.2',
'numpy>=1.16.4',
'scipy>=1.3.1',
'scikit-learn>=0.21.3',
'scanorama>=1.7.1'
]
)