Skip to content

Commit

Permalink
Merge pull request clawpack#13 from ahmadia/clawpack-5-rc
Browse files Browse the repository at this point in the history
new Riemann solver module names, apps now importable
  • Loading branch information
ketch committed Jul 25, 2013
2 parents 974653a + 3c07637 commit 330a3c0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyclaw
Submodule pyclaw updated 131 files
20 changes: 19 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,23 @@
import time

join = os.path.join

# Specify top-level subpackages in SUBPACKAGES. SUBPACKAGES is a
# dictionary specifying which packages you would like installed. By
# default, the installer will download all of these packages for you.
# You can disable packages by deleting from the dictionary, but you
# will probably need at least pyclaw, visclaw, clawutil, and riemann.

# ADVICE TO DEVELOPERS:
# The 'python_src_dir' dictionary specifies the symlink directory
# structure provided to enable the clawpack.xxx namespace.
# For example, the pyclaw Python package lives in pyclaw/src/pyclaw.
# It is made available in clawpack/pyclaw by creating a symlink
# specified by 'src' (the package name is implicit at the beginning
# and end). Getting the pyclaw/apps directory requires a small feat
# of gymnastics, see the code in dev_setup() if you would like to
# refactor this.

SUBPACKAGES = {
'amrclaw': {
'python_src_dir': [('amrclaw', join('src', 'python'))]
Expand All @@ -37,7 +54,8 @@
},
'pyclaw': {
'python_src_dir': [('pyclaw', 'src'),
('petclaw', 'src')]
('petclaw', 'src'),
(join('pyclaw','apps'), '..')]
},
'riemann': {
'python_src_dir': [('riemann', join('src', 'python'))],
Expand Down

0 comments on commit 330a3c0

Please sign in to comment.