summaryrefslogtreecommitdiffstats
path: root/src/Python/setup-fista.py.in
diff options
context:
space:
mode:
authoralgol <dkazanc@hotmail.com>2018-01-25 17:22:13 +0000
committeralgol <dkazanc@hotmail.com>2018-01-25 17:22:13 +0000
commit7edf78f4733379ddc093dc37650f5886bb03d98b (patch)
treec78c03166d90c06de88d5d78bed449041361da02 /src/Python/setup-fista.py.in
parentef41d45779400ae029a14822df79d5d8910ef03d (diff)
parent993022bdddef2c81067db70be6c65a6f943c24bb (diff)
downloadregularization-7edf78f4733379ddc093dc37650f5886bb03d98b.tar.gz
regularization-7edf78f4733379ddc093dc37650f5886bb03d98b.tar.bz2
regularization-7edf78f4733379ddc093dc37650f5886bb03d98b.tar.xz
regularization-7edf78f4733379ddc093dc37650f5886bb03d98b.zip
Merge branch 'master' of https://github.com/vais-ral/CCPi-FISTA_Reconstruction
Diffstat (limited to 'src/Python/setup-fista.py.in')
-rw-r--r--src/Python/setup-fista.py.in27
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.
-)