-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
51 lines (44 loc) · 1.46 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
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: skip-file
from setuptools import setup
from setuptools import find_packages
import re
import os
import sys
from pkg_resources import parse_version
# load version form _version.py
exec(open("gpflowSlim/_version.py").read())
# Dependencies
requirements = [
'numpy>=1.10.0',
'scipy>=0.18.0',
'pandas>=0.18.1',
'sympy>=1.1.1'
]
packages = find_packages('.')
package_data={'gpflowSlim': ['gpflowSlim/gpflowrc']}
setup(name='gpflowSlim',
version=__version__,
author="Shengyang Sun, Guodong Zhang",
author_email="[email protected]",
description=("customed GPflow with simple Tensorflow API"),
license="Apache License 2.0",
keywords="machine-learning gaussian-processes kernels tensorflow",
url="http://github.com/ssydasheng/GPflow-Slim",
packages=packages,
install_requires=requirements,
tests_require=['pytest'],
package_data=package_data,
include_package_data=True,
test_suite='tests',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
])