-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (38 loc) · 1.03 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
40
41
#!/usr/bin/env python
from setuptools import setup, find_packages
from meap import __version__
setup(
name="MEAP",
version=__version__,
description="A program for analyzing acqknowledge files",
author="Matt Cieslak and Will Ryan",
author_email="[email protected]",
install_requires=[],
# "ez_setup",
# "joblib",
# "scikit-learn==0.17.1",
# "scikit-image",
# "traits",
# "traitsui",
# #"pyqt<5",
# "kiwisolver",
# "nibabel",
# "bioread==0.9.5",
# "xlrd",
# #"chaco",
# "numpy",
# "scipy",
# "pandas"],
packages=find_packages(),
package_data={
"":[
"resources/logo48x38.png",
"resources/logo512x512.png"
]
},
entry_points= {
"gui_scripts": [
"meap_analyze = meap.easy_launch:analyze",
"meap_preprocess = meap.easy_launch:preprocess" ]
}
)