-
Notifications
You must be signed in to change notification settings - Fork 63
/
setup.py
42 lines (38 loc) · 1.4 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
import numpy
# Version number
version = '1.0'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name = 'DGP',
version = version,
author = read('AUTHORS.txt'),
author_email = "[email protected]",
description = ("Deep Gaussian Process"),
license = "BSD 3-clause",
keywords = "deep learning",
url = "",
packages = ["deepgp",
"deepgp.inference",
"deepgp.layers",
"deepgp.util",
"deepgp.models"],
package_dir={'deepgp': 'deepgp'},
py_modules = ['deepgp.__init__'],
long_description=read('README.md'),
install_requires=['numpy>=1.7', 'scipy>=0.12','GPy>=1.0'],
include_dirs=[numpy.get_include()],
classifiers=['License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
]
)