Skip to content
Snippets Groups Projects
Commit 540cd06b authored by Dilawar Singh's avatar Dilawar Singh
Browse files

Squashed 'moose-core/' changes from 6a2bdbaf4..fef4802fb

fef4802fb Don't add setuptool specific keywords. It works on linux but not on OSX.

git-subtree-dir: moose-core
git-subtree-split: fef4802fb2ab613a29eec6c1945933d557682194
parent 5dd6acfa
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,10 @@ setup( ...@@ -53,7 +53,10 @@ setup(
, 'moose.neuroml', 'moose.neuroml2' , 'moose.neuroml', 'moose.neuroml2'
, 'moose.chemUtil' , 'moose.chemUtil'
], ],
install_requires = [ 'python-libsbml', 'numpy' ], # install_requires is `setuptool` specific keyword. Don't use it here
# else wheel won't build for OSX. Let use install the dependencies
# by themselves. We notify them when they try to import SBML.
# install_requires = [ 'python-libsbml', 'numpy' ],
package_dir = { 'moose' : 'moose', 'rdesigneur' : 'rdesigneur' }, package_dir = { 'moose' : 'moose', 'rdesigneur' : 'rdesigneur' },
package_data = { 'moose' : ['_moose' + suffix ] }, package_data = { 'moose' : ['_moose' + suffix ] },
) )
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment