forked from uweschmitt/emzed2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (42 loc) · 1.56 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (42 loc) · 1.56 KB
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
40
41
42
43
44
45
46
47
48
49
import sys
from setuptools import setup, find_packages
# no import emzed here, causes trouble when installing on win, as missing packages
# are needed when importing emzed
version = (2, 23, 2)
install_requires = ["emzed_optimizations>=0.5.0",
"guidata<=1.6.2",
"guiqwt<=2.3.2",
"requests",
"ipython==0.10",
# "spyder==2.1.13",
"dill",
"sphinx",
"html2text",
"pandas",
"dill",
"pyopenms",
"pyRserve==0.8.2",
"pytest",
]
# if we install pyreadline on ubuntu14 we run into trouble:
if sys.platform == "win32":
install_requires += ["pyreadline"]
elif sys.platform != "linux2":
install_requires += ["readline"]
setup(name="emzed",
packages=find_packages(exclude=["tests", "sandbox"]),
version="%d.%d.%d" % version,
keywords=["alpha", ],
description="Rewrite of emzed framework for LCMS data analysis",
entry_points={
"gui_scripts": ["emzed.workbench = emzed.workbench.main:main",
"emzed.inspect = emzed.cmdline:inspect",
],
"console_scripts": ["emzed.console = emzed.console:main",
"emzed.workbench.debug = emzed.workbench.main:main",
]
},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
)