forked from biolab/orange3-bioinformatics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (38 loc) · 1.2 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
#!/usr/bin/env python
import setuptools
if __name__ == '__main__':
setuptools.setup(
use_scm_version=True,
setup_requires=['setuptools-scm', 'setuptools>=40.0'],
install_requires=[
'Orange3>=3.34.0',
'orange-widget-base>=4.19.0',
'pyclipper>=1.2.0',
'point-annotator~=2.0',
'requests',
'requests-cache>=0.8.0',
'resdk>=20.0.0',
'genesis-pyapi',
'single_sample_gsea>=0.2.0',
# Versions are determined by Orange
'numpy',
'scipy',
'serverfiles',
],
extras_require={
# docutils changed html in 0.17; fixing to 0.16 until parser fixed
# todo: remove docutils when parser fixed in widget-base and released
'doc': ['sphinx', 'recommonmark', 'sphinx_rtd_theme', 'docutils<0.17'],
'test': [
'flake8',
'flake8-comprehensions',
'flake8-black',
'pep8-naming',
'isort',
'pre-commit',
'pytest',
'coverage',
'codecov',
],
},
)