diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-08-29 09:11:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-29 09:11:45 -0700 |
commit | f7ee8d001aa82576b61ddc3a755d099dd4c26daa (patch) | |
tree | 99ba4195169d396d4375ff1927f4c2aa5490cdb3 | |
parent | 57033a62fab360c4fa59a57fbc74ff72d98d6687 (diff) | |
parent | df623dad159d6ae4f4f688fc6ea7c1a1ef8c281c (diff) | |
download | spack-f7ee8d001aa82576b61ddc3a755d099dd4c26daa.tar.gz spack-f7ee8d001aa82576b61ddc3a755d099dd4c26daa.tar.bz2 spack-f7ee8d001aa82576b61ddc3a755d099dd4c26daa.tar.xz spack-f7ee8d001aa82576b61ddc3a755d099dd4c26daa.zip |
Merge pull request #1564 from adamjstewart/features/create
Suggest setuptools when creating Python package
-rw-r--r-- | lib/spack/spack/cmd/create.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/create.py b/lib/spack/spack/cmd/create.py index 52a82eb38f..aa7c42def0 100644 --- a/lib/spack/spack/cmd/create.py +++ b/lib/spack/spack/cmd/create.py @@ -120,7 +120,8 @@ dependencies_dict = { extends('python') # FIXME: Add additional dependencies if required. - # depends_on('py-foo', type=nolink)""", + # depends_on('py-setuptools', type='build') + # depends_on('py-foo', type=nolink)""", 'R': """\ extends('R') |