-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 909 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
32
33
34
35
36
37
38
39
from setuptools import setup
setup(
name='scrap-viz',
version='1.0.0alpha',
description='Single-cell RNA sequencing analysis tools and visualization',
url='https://github.com/ThomsonLab/scrap-viz',
author='David Brown',
author_email='[email protected]',
license='MIT',
packages=[
"scrap_viz",
"scrap_viz.gui"
],
python_requires='~=3.6',
entry_points={
"console_scripts": [
"scrap-viz=scrap_viz.gui.plotting_server:launch_server"
]
},
install_requires=[
"urllib3",
"matplotlib",
"pandas",
"numpy",
"scipy",
"dash>=0.37.0,<1.0",
"dash-core-components<1.0",
"dash-html-components<1.0",
"dash-renderer<1.0",
"plotly",
"flask",
"sparsedat>=1.0.0alpha4",
"sklearn",
"scrapi>=0.3",
"h5py"
]
)