-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected source code for version 4.1.0: added png GUI files that wer…
…e left out of repository, reverted setup.py and init changes made after 4.1.0
- Loading branch information
Showing
10 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -7,5 +7,5 @@ | |
""" | ||
|
||
from __future__ import absolute_import | ||
__version__ = '4.1.0-2' | ||
__version__ = '4.1.0' | ||
from . import phys, qra |
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 |
---|---|---|
|
@@ -30,12 +30,12 @@ def get_version(rel_path): | |
setup(name='hyram', | ||
packages = find_packages(), | ||
version = get_version(os.path.join('hyram', '__init__.py')), | ||
author = 'Brian D. Ehrhart, Cianan Sims, Ethan S. Hecht, Benjamin B. Schroeder, Katrina M. Groth, John T. Reynolds, and Gregory W. Walkup', | ||
# author_email = '[email protected]', | ||
author = 'Ethan Hecht', | ||
author_email = '[email protected]', | ||
description = 'Hydrogen Plus Other Alternative Fuels Risk Assessment Models - physics and QRA modules', | ||
url = 'https://hyram.sandia.gov/', | ||
license = 'GNU General Public License v3 (GPLv3)', | ||
classifiers = ['Development Status :: 3 - Alpha'], | ||
classifiers = 'Development Status :: 3 - Alpha', | ||
install_requires = ['numpy', 'matplotlib', 'scipy', 'coolprop>=6.3', 'pythonnet'], | ||
keywords = 'hydrogen, methane, propane, flame, plume, jet, overpressure, quantitiave risk assessment', | ||
) |