Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ notebooks/jupyternb-scenario-series-example/

**/utility_functions.ipynb
**/scripts/*.data
scripts/
dry_creek
**/dry_creek/
prms_python.egg-info
Expand Down
2 changes: 1 addition & 1 deletion prms_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

"""

__name__ = 'prms-python'
__name__ = 'prms_python'
__author__ = 'John Volk and Matthew Turner'
__version__ = '1.0.0'

Expand Down
1 change: 1 addition & 0 deletions prms_python/data.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
'''
data.py -- holds ``Data`` class for standard PRMS climate input data.
'''
Expand Down
1 change: 1 addition & 0 deletions prms_python/optimizer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
'''
optimizer.py -- holds ``Optimizer`` and ``OptimizationResult`` classes for
optimization routines and management conducted on PRMS parameters.
Expand Down
1 change: 1 addition & 0 deletions prms_python/parameters.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
'''
parameters.py -- holds ``Parameter`` class with multiple functionality for
the standard PRMS parameters input file.
Expand Down
1 change: 1 addition & 0 deletions prms_python/scenario.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
'''
scenario.py -- holds ``Scenario`` and ``ScenarioSeries`` classes for PRMS
managing parameter-based model scenarios that may be used for hypotheses
Expand Down
Empty file added prms_python/scripts/__init__.py
Empty file.
1 change: 1 addition & 0 deletions prms_python/simulation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
simulation.py -- Contains ``Simulation`` and ``SimulationSeries`` classes and
associated functions for managing PRMS simulations at a low level.
Expand Down
1 change: 1 addition & 0 deletions prms_python/util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
util.py -- Utilities for working with PRMS data or other functionality that aren't
appropriate to put elsewhere at this time.
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
classifiers = [
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Environment :: Console',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
Expand Down