-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
31 lines (28 loc) · 908 Bytes
/
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
from setuptools import setup
setup(
name="bnn_priors",
version="0.1.0",
description="investigations on BNN priors",
long_description="",
author="Vincent Fortuin, Adrià Garriga-Alonso",
author_email="[email protected]",
url="https://github.com/ratschlab/projects2020_BNN-priors/",
license="MIT license",
packages=["bnn_priors"],
install_requires=[
"torch>=1.5.0<1.6",
"torchvision>=0.6<0.7",
"h5py>=2.10<2.11",
"sacred>=0.8<0.9",
"gpytorch>=1.0<1.2",
"pyro-ppl>=1.3<1.4",
# Current metrics storage relies on a bug in numpy 1.18.5 where NaN is
# automatically cast to -2**64 if written to an empty array of type int64.
"numpy>=1.18<1.19",
# Coarse dependencies
"scipy>=1.5.2<1.6",
"tqdm>=4.0<5.0",
"matplotlib>=3.0<4.0",
],
test_suite="testing",
)