diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2018-01-25 21:55:28 +0000 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2018-01-25 21:55:28 +0000 |
commit | dea3fee71df68034223948f1f992814081994517 (patch) | |
tree | 2eceac615ef26d9565538d35ec3159aeda9eb800 /src/Python/setup-fista.py.in | |
parent | 542eda7340dd8ed74eb5a2e492bc5171ecd588af (diff) | |
parent | d274c376cfb5bcb11e8ce72ea57f921c4149eb7e (diff) | |
download | regularization-dea3fee71df68034223948f1f992814081994517.tar.gz regularization-dea3fee71df68034223948f1f992814081994517.tar.bz2 regularization-dea3fee71df68034223948f1f992814081994517.tar.xz regularization-dea3fee71df68034223948f1f992814081994517.zip |
Merge branch 'master' into gpu
Diffstat (limited to 'src/Python/setup-fista.py.in')
-rw-r--r-- | src/Python/setup-fista.py.in | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/Python/setup-fista.py.in b/src/Python/setup-fista.py.in deleted file mode 100644 index c5c9f4d..0000000 --- a/src/Python/setup-fista.py.in +++ /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. -) |