forked from KrishnaswamyLab/MAGIC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 826 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
import os
import sys
import shutil
from setuptools import setup
from warnings import warn
if sys.version_info.major != 3:
raise RuntimeError('Magic requires Python 3')
setup(name='magic',
version='0.0',
description='MAGIC',
author='',
author_email='',
package_dir={'': 'src'},
packages=['magic'],
install_requires=[
'numpy>=1.10.0',
'pandas>=0.18.0',
'scipy>=0.14.0',
'matplotlib',
'seaborn',
'sklearn',
'networkx',
'fcsparser',
'statsmodels',
],
dependency_links = [
'git+https://github.com/jacoblevine/phenograph.git',
],
scripts=['src/magic/magic_gui.py'],
)
# get location of setup.py
setup_dir = os.path.dirname(os.path.realpath(__file__))