forked from biolab/orange3-single-cell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 776 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
30
31
#!/usr/bin/env python3
import setuptools
if __name__ == '__main__':
setuptools.setup(
use_scm_version=True,
setup_requires=[
'setuptools-scm',
'setuptools',
],
install_requires=[
'Orange3>=3.34.0',
'orange3-bioinformatics>=4.0.0',
'fastdtw==0.3.2',
'pandas>=0.23',
'loompy>=2.0.10',
'xlrd>=2.0.1',
'openpyxl',
'anndata>=0.6.21',
'numpy',
'scikit-learn',
],
extras_require={
'doc': ['sphinx', 'recommonmark', 'sphinx_rtd_theme', 'docutils'],
'package': ['twine', 'wheel'],
'test': [
'coverage',
],
},
)