-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
33 lines (29 loc) · 997 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, find_packages
from pathlib import Path
project_root = Path(__file__).resolve().parent
about = {}
version_path = project_root / 'GPdoemd' / '__version__.py'
with version_path.open() as f:
exec(f.read(), about)
setup(
name='GPdoemd',
author=about['__author__'],
author_email=about['__author_email__'],
license=about['__license__'],
version=about['__version__'],
url='https://github.com/cog-imperial/GPdoemd',
packages=find_packages(exclude=['tests','docs']),
install_requires=['numpy>=1.7',
'scipy>=0.17',
'matplotlib>=1.3',
'six',
'paramz>=0.9.0',
'GPy'],
setup_requires=['numpy>=1.7',
'scipy>=0.17',
'matplotlib>=1.3',
'six',
'paramz>=0.9.0',
'GPy'],
tests_require=['pytest-runner','pytest', 'pytest-cov'],
)