-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
33 lines (32 loc) · 960 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
32
33
from setuptools import setup
import os
import sys
setup(
name='subspace_inference',
version='0.0',
description='Subspace Inference for Bayesian Deep Learning',
author='Pavel Izmailov, Wesley Maddox, Polina Kirichenko, Timur Garipov, Dmitry Vetrov, Andrew Gordon Wilson',
author_email='wm326@cornell.edu',
url='https://github.com/wjmaddox/drbayes',
license='MPL-2.0',
packages=['subspace_inference'],
install_requires=[
'tqdm==4.26.0',
'numpy>=1.14.3',
'torchvision>=0.2.1',
'gpytorch>=0.1.0rc4',
'tabulate>=0.8.2',
'scipy>=1.1.0',
'setuptools>=39.1.0',
'matplotlib>=2.2.2',
'torch>=1.0.0',
'scikit_learn==0.20.2',
'seaborn',
'pyro-ppl'
],
include_package_data=True,
classifiers=[
'Development Status :: 0',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6'],
)