forked from fujii-team/Henbun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.55 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 -*-
from __future__ import print_function
from setuptools import setup
import re
import os
import sys
# load version form _version.py
VERSIONFILE = "Henbun/_version.py"
verstrline = open(VERSIONFILE, "rt").read()
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
mo = re.search(VSRE, verstrline, re.M)
if mo:
verstr = mo.group(1)
else:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
setup(name='Henbun',
version=verstr,
author="Keisuke Fujii",
author_email="[email protected]",
description=("Stochastic Variational Model based on TensorFlow"),
license="BSD 3-clause",
keywords="machine-learning gaussian-processes kernels",
url="http://github.com/fujii-team/Henbun",
include_package_data=True,
ext_modules=[],
packages=["Henbun"],
package_dir={'Henbun': 'Henbun'},
py_modules=['Henbun.__init__'],
test_suite='testing',
#install_requires=['numpy>=1.9', 'scipy>=0.16', 'tensorflow>=0.9', 'GPflow>=0.3.0'],
install_requires=['numpy>=1.9', 'scipy>=0.16', 'tensorflow>=0.11.0rc1'],
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',
'Topic :: Scientific/Engineering :: Artificial Intelligence']
)