diff options
author | Daniil Kazantsev <dkazanc3@googlemail.com> | 2018-04-09 15:17:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-09 15:17:24 +0100 |
commit | 62635199f4e5a464a267ffce070ecec68bfdcfe8 (patch) | |
tree | cdc7c4469e210a52cb416b2747ca2d954da073cc /Wrappers/Python/setup-fista.py | |
parent | a5b5872b76bf00023a7e7cee97e028003ccbc45e (diff) | |
parent | b9fafd363d1d181a4a8b42ea4038924097207913 (diff) | |
download | regularization-62635199f4e5a464a267ffce070ecec68bfdcfe8.tar.gz regularization-62635199f4e5a464a267ffce070ecec68bfdcfe8.tar.bz2 regularization-62635199f4e5a464a267ffce070ecec68bfdcfe8.tar.xz regularization-62635199f4e5a464a267ffce070ecec68bfdcfe8.zip |
Merge pull request #47 from vais-ral/add3Dtests
major renaming and new 3D demos for Matlab
Diffstat (limited to 'Wrappers/Python/setup-fista.py')
-rw-r--r-- | Wrappers/Python/setup-fista.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Wrappers/Python/setup-fista.py b/Wrappers/Python/setup-fista.py deleted file mode 100644 index c5c9f4d..0000000 --- a/Wrappers/Python/setup-fista.py +++ /dev/null @@ -1,27 +0,0 @@ -from distutils.core import setup -#from setuptools import setup, find_packages -import os - -cil_version=os.environ['CIL_VERSION'] -if cil_version == '': - print("Please set the environmental variable CIL_VERSION") - sys.exit(1) - -setup( - name="ccpi-fista", - version=cil_version, - packages=['ccpi','ccpi.reconstruction'], - install_requires=['numpy'], - - zip_safe = False, - - # metadata for upload to PyPI - author="Edoardo Pasca", - author_email="edo.paskino@gmail.com", - description='CCPi Core Imaging Library - FISTA Reconstructor module', - license="Apache v2.0", - keywords="tomography interative reconstruction", - url="http://www.ccpi.ac.uk", # project home page, if any - - # could also include long_description, download_url, classifiers, etc. -) |