summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/setup-fista.py.in
diff options
context:
space:
mode:
authorEdoardo Pasca <edo.paskino@gmail.com>2018-01-23 17:30:20 +0000
committerEdoardo Pasca <edo.paskino@gmail.com>2018-01-23 22:45:21 +0000
commit20ca5ce5a1c23936d0ebf6d49cd80e90e81da7fe (patch)
tree4e5f5ccf61890404edec12d43bb2987902fcfbac /Wrappers/Python/setup-fista.py.in
parent8935451cc1449570b485cd244ca564a17b80bfa2 (diff)
downloadregularization-20ca5ce5a1c23936d0ebf6d49cd80e90e81da7fe.tar.gz
regularization-20ca5ce5a1c23936d0ebf6d49cd80e90e81da7fe.tar.bz2
regularization-20ca5ce5a1c23936d0ebf6d49cd80e90e81da7fe.tar.xz
regularization-20ca5ce5a1c23936d0ebf6d49cd80e90e81da7fe.zip
Added conda recipe for FISTA
removed dangling files
Diffstat (limited to 'Wrappers/Python/setup-fista.py.in')
-rw-r--r--Wrappers/Python/setup-fista.py.in27
1 files changed, 0 insertions, 27 deletions
diff --git a/Wrappers/Python/setup-fista.py.in b/Wrappers/Python/setup-fista.py.in
deleted file mode 100644
index c5c9f4d..0000000
--- a/Wrappers/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.
-)