summaryrefslogtreecommitdiffstats
path: root/src/Python/setup-fista.py.in
diff options
context:
space:
mode:
authoralgol <dkazanc@hotmail.com>2017-10-26 15:29:16 +0100
committeralgol <dkazanc@hotmail.com>2017-10-26 15:29:16 +0100
commite6349ed946772ee25a2f3ea1eba03e4c77e4f75e (patch)
tree47dd09cac6b16c2dff2ae874538c3ea64281876f /src/Python/setup-fista.py.in
parenta4ee6ded8036fa1a10ef860478f49d2eb2cd11e0 (diff)
parented7dd1150261eddbc8dc5cea9b46ced884d5a884 (diff)
downloadregularization-e6349ed946772ee25a2f3ea1eba03e4c77e4f75e.tar.gz
regularization-e6349ed946772ee25a2f3ea1eba03e4c77e4f75e.tar.bz2
regularization-e6349ed946772ee25a2f3ea1eba03e4c77e4f75e.tar.xz
regularization-e6349ed946772ee25a2f3ea1eba03e4c77e4f75e.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, 27 insertions, 0 deletions
diff --git a/src/Python/setup-fista.py.in b/src/Python/setup-fista.py.in
new file mode 100644
index 0000000..c5c9f4d
--- /dev/null
+++ b/src/Python/setup-fista.py.in
@@ -0,0 +1,27 @@
+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.
+)