-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
64 lines (52 loc) · 2.31 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
52
53
54
55
56
57
58
59
60
61
62
# hIPPYlib-MUQ interface for large-scale Bayesian inverse problems
# Copyright (c) 2019-2020, The University of Texas at Austin,
# University of California--Merced, Washington University in St. Louis,
# The United States Army Corps of Engineers, Massachusetts Institute of Technology
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
from os import path
from io import open
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
version = {}
with open(path.join(this_directory, 'hippylib2muq/version.py')) as f:
exec(f.read(), version)
VERSION = version['__version__']
REQUIREMENTS = [
'hippylib',
'seaborn',
'statsmodels',
'h5py',
'pyyaml'
]
setup(name="hippylib2muq",
version=VERSION,
author="Ki-Tae Kim, Umberto Villa, Matthew Parno, Noemi Petra, Youssef Marzouk, Omar Ghattas",
author_email="[email protected]",
description="a hippylib-muq interface for large-scale Bayesian inverse problems",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
],
packages=find_packages(),
install_requires=REQUIREMENTS,
project_urls={
'Source': 'https://github.com/hippylib/hippylib2muq/tree/master/hippylib2muq',
'Bug Reports': 'https://github.com/hippylib/hippylib2muq/issues',
}
)