forked from jgomezdans/gp_emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 824 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
setup(name='gp_emulator',
version='1.5.3',
description='A Python GaussianProcess emulator software package',
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Environment :: Console'],
author='J Gomez-Dans',
author_email='j.gomez-dans@ucl.ac.uk',
url='http://github.com/jgomezdans/gp_emulator',
packages=['gp_emulator'],
)