-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.11 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
42
import setuptools
setuptools.setup(
name="waveome",
version="0.0.3",
author="Allen Ross",
author_email="allenross@gwu.edu",
description="""
Automated longitudinal data analysis using Gaussian processes.
""",
url="https://github.com/omicsEye/waveome",
project_urls={
"Bug Tracker": "https://github.com/omicsEye/waveome/issues"
},
license="MIT",
packages=["waveome"],
install_requires=[
# Need to pin TF and TF prob together
# Pin for python 3.11.8 - not mac specific
"tensorflow==2.15.1",
"tensorflow_probability==0.23.0",
# Main package - doesn't handle TF well at install
"gpflow==2.9.1",
# "tf-keras", # Don't use this for the time being with keras opts
# # Pin for python 3.8.12 (tensorflow-metal GPU)
# "tensorflow==2.13.0",
# "tensorflow-metal==1.0.1",
# "tensorflow_probability==0.21.0",
"pandas",
"numpy",
"ray[default]",
"scipy",
"joblib", # Switch out for ray
"seaborn",
"matplotlib",
"tqdm"
],
)