diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2017-10-23 17:04:41 +0100 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2017-10-23 17:04:41 +0100 |
commit | ece0bfc45cf2e339fc517a4f2c078f0b8fe274ad (patch) | |
tree | b52304b950304fe58200d5e5f6744ded852122a6 /src/Python/setup-fista.py.in | |
parent | 44ec01fa2e8d8da2dce4950ea3d822fe7c8cd8d5 (diff) | |
download | regularization-ece0bfc45cf2e339fc517a4f2c078f0b8fe274ad.tar.gz regularization-ece0bfc45cf2e339fc517a4f2c078f0b8fe274ad.tar.bz2 regularization-ece0bfc45cf2e339fc517a4f2c078f0b8fe274ad.tar.xz regularization-ece0bfc45cf2e339fc517a4f2c078f0b8fe274ad.zip |
add fista-recipe and stuff
Diffstat (limited to 'src/Python/setup-fista.py.in')
-rw-r--r-- | src/Python/setup-fista.py.in | 27 |
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. +) |