diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2016-11-18 08:57:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-18 08:57:46 -0800 |
commit | 6c9756b1d26d1e920b12cdcf8580362690427ddc (patch) | |
tree | 5e4bee74486176215ede3fc28e39420dfca861e1 /python/builder.py | |
parent | 1a092b53bddd7e31a3fcf12a13aabd404e91d215 (diff) | |
parent | 78985a7b623ca8596e2acd57d4bf0ab052900e3a (diff) | |
download | astra-6c9756b1d26d1e920b12cdcf8580362690427ddc.tar.gz astra-6c9756b1d26d1e920b12cdcf8580362690427ddc.tar.bz2 astra-6c9756b1d26d1e920b12cdcf8580362690427ddc.tar.xz astra-6c9756b1d26d1e920b12cdcf8580362690427ddc.zip |
Merge pull request #66 from wjp/iter_plugins
Add SIRT, CGLS python plugins
Diffstat (limited to 'python/builder.py')
-rw-r--r-- | python/builder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/builder.py b/python/builder.py index dcd62d8..243888b 100644 --- a/python/builder.py +++ b/python/builder.py @@ -87,6 +87,6 @@ setup (name = 'PyASTRAToolbox', include_dirs=[np.get_include()], cmdclass = cmdclass, #ext_modules = [Extension("astra","astra/astra.pyx")], - packages=['astra'], + packages=['astra', 'astra.plugins'], requires=["numpy"], ) |