-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name="GJMorph",
use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=find_packages(exclude=["^\."]),
exclude_package_data={'': ["Readme.md"]},
install_requires=["numpy>=1.11.2",
"matplotlib>=1.5.3",
"scipy>=0.18.1",
"pandas>=0.19.0",
"seaborn>=0.7.1",
"pylatex",
"btmorph2>=2.1.1",
"pillow>=4.0.0",
"xlrd>=1.0.0",
"openpyxl>=2.4.5",
"regmaxsn",
"requests>=2.14.2",
"py-vaa3d>=0.1",
"scikit-learn>=0.19.1",
"rpy2>=2.8.6"],
python_requires=">=2.7",
dependency_links=["git+https://github.com/wachtlerlab/btmorph_v2.git",
"git+https://github.com/dEvasEnApati/pyVaa3d.git",
"git+https://github.com/wachtlerlab/Reg-MaxS.git"]
)