forked from wjmaddox/swa_gaussian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.18 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
43
from setuptools import setup
import os
import sys
_here = os.path.abspath(os.path.dirname(__file__))
if sys.version_info[0] < 3:
with open(os.path.join(_here, "README.rst")) as f:
long_description = f.read()
else:
with open(os.path.join(_here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="swag",
version="0.0",
description=("SWA-Gaussian repo"),
long_description=long_description,
author="Wesley Maddox, Timur Garipov, Pavel Izmailov, Dmitry Vetrov, Andrew Gordon Wilson",
author_email="[email protected]",
url="https://github.com/wjmaddox/swa_gaussian",
license="MPL-2.0",
packages=["swag"],
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",
"Pillow>=5.4.1",
"scikit_learn>=0.20.2",
],
include_package_data=True,
classifiers=[
"Development Status :: 0",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.6",
],
)