-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/Development' into feature/CI
# Conflicts: # setup.py
- Loading branch information
Showing
16 changed files
with
130 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ Uncertainty Quantification with python (UQpy) | |
|
||
:Authors: Michael D. Shields, Dimitris G. Giovanis, Audrey Olivier, Aakash Bangalore Satish, Mohit Singh Chauhan, Lohit Vandanapu, Ketson RM dos Santos, Katiana Kontolati | ||
:Contact: [email protected] | ||
:Version: 3.0.3 | ||
:Version: 3.0.4 | ||
|
||
|
||
Description | ||
|
@@ -85,7 +85,7 @@ For assistance with the UQpy software package, please raise an issue on the Gith | |
|
||
.. image:: https://img.shields.io/pypi/dm/UQpy?style=plastic :alt: PyPI - Downloads | ||
.. image:: https://img.shields.io/conda/dn/conda-forge/UQpy?style=plastic :alt: Conda | ||
.. image:: https://img.shields.io/github/downloads/SURGroup/UQpy/v3.0.1/total?style=plastic :alt: GitHub Releases (by Release) | ||
.. image:: https://img.shields.io/github/downloads/SURGroup/UQpy/V3.0.4/total?style=plastic :alt: GitHub Releases (by Release) | ||
|
||
.. image:: https://img.shields.io/pypi/v/UQpy?style=plastic :alt: PyPI | ||
.. image:: https://img.shields.io/conda/v/conda-forge/UQpy?style=plastic :alt: Conda | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
#!/usr/bin/env python | ||
import sys | ||
version = sys.argv[1] | ||
del sys.argv[1] | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='UQpy', | ||
version=version, | ||
url='https://github.com/SURGroup/UQpy', | ||
description="UQpy is a general purpose toolbox for Uncertainty Quantification", | ||
author="Michael D. Shields, Dimitris G. Giovanis, Audrey Olivier, Aakash Bangalore-Satish, Mohit Chauhan, " | ||
"Lohit Vandanapu, Ketson R.M. dos Santos", | ||
author_email="[email protected]", | ||
license='MIT', | ||
platforms=["OSX", "Windows", "Linux"], | ||
packages=find_packages("src"), | ||
package_dir={"": "src"}, | ||
package_data={"": ["*.pdf"]}, | ||
install_requires=[ | ||
"numpy", "scipy", "matplotlib", "scikit-learn", 'fire' | ||
], | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering :: Mathematics', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
], | ||
) | ||
#!/usr/bin/env python | ||
import sys | ||
version = sys.argv[1] | ||
del sys.argv[1] | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='UQpy', | ||
version=version, | ||
url='https://github.com/SURGroup/UQpy', | ||
description="UQpy is a general purpose toolbox for Uncertainty Quantification", | ||
author="Michael D. Shields, Dimitris G. Giovanis, Audrey Olivier, Aakash Bangalore-Satish, Mohit Chauhan, " | ||
"Lohit Vandanapu, Ketson R.M. dos Santos", | ||
author_email="[email protected]", | ||
license='MIT', | ||
platforms=["OSX", "Windows", "Linux"], | ||
packages=find_packages("src"), | ||
package_dir={"": "src"}, | ||
package_data={"": ["*.pdf"]}, | ||
install_requires=[ | ||
"numpy", "scipy", "matplotlib", "scikit-learn", 'fire' | ||
], | ||
classifiers=[ | ||
'Programming Language :: Python :: 3', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering :: Mathematics', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.