forked from dpeerlab/magic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 737 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 737 Bytes
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
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.1.1",
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",
"scikit-learn",
"networkx",
"fcsparser",
"statsmodels",
"tables",
],
scripts=["src/magic/magic_gui.py", "src/magic/MAGIC.py"],
)
# get location of setup.py
setup_dir = os.path.dirname(os.path.realpath(__file__))