Skip to content

Commit 7ee545a

Browse files
authored
Merge pull request #24 from PRMS-Python/issue23
Issue23
2 parents 03b2840 + 18e0857 commit 7ee545a

10 files changed

Lines changed: 11 additions & 6 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ notebooks/jupyternb-scenario-series-example/
1919

2020
**/utility_functions.ipynb
2121
**/scripts/*.data
22-
scripts/
2322
dry_creek
2423
**/dry_creek/
2524
prms_python.egg-info

prms_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
"""
1414

15-
__name__ = 'prms-python'
15+
__name__ = 'prms_python'
1616
__author__ = 'John Volk and Matthew Turner'
1717
__version__ = '1.0.0'
1818

prms_python/data.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
'''
23
data.py -- holds ``Data`` class for standard PRMS climate input data.
34
'''

prms_python/optimizer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
'''
23
optimizer.py -- holds ``Optimizer`` and ``OptimizationResult`` classes for
34
optimization routines and management conducted on PRMS parameters.

prms_python/parameters.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
'''
23
parameters.py -- holds ``Parameter`` class with multiple functionality for
34
the standard PRMS parameters input file.

prms_python/scenario.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
'''
23
scenario.py -- holds ``Scenario`` and ``ScenarioSeries`` classes for PRMS
34
managing parameter-based model scenarios that may be used for hypotheses

prms_python/scripts/__init__.py

Whitespace-only changes.

prms_python/simulation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
"""
23
simulation.py -- Contains ``Simulation`` and ``SimulationSeries`` classes and
34
associated functions for managing PRMS simulations at a low level.

prms_python/util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# -*- coding: utf-8 -*-
12
"""
23
util.py -- Utilities for working with PRMS data or other functionality that aren't
34
appropriate to put elsewhere at this time.

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
classifiers = [
1414
'License :: OSI Approved :: BSD License',
1515
'Programming Language :: Python :: 2.7',
16-
'Programming Language :: Python :: 3.4',
17-
'Programming Language :: Python :: 3.5',
18-
'Programming Language :: Python :: 3.6',
19-
'Programming Language :: Python :: 3.7',
16+
'Programming Language :: Python :: 3.4',
17+
'Programming Language :: Python :: 3.5',
18+
'Programming Language :: Python :: 3.6',
19+
'Programming Language :: Python :: 3.7',
2020
'Environment :: Console',
2121
'Development Status :: 4 - Beta',
2222
'Topic :: Scientific/Engineering',

0 commit comments

Comments
 (0)