https://github.com/jyhmiinlin/pynufft
Revision ae5a2543d396fb269da50146028d95659b148fa5 authored by Jyh-Miin Lin on 06 October 2020, 22:21:28 UTC, committed by Jyh-Miin Lin on 06 October 2020, 22:21:28 UTC
1 parent 69ec3c8
Tip revision: ae5a2543d396fb269da50146028d95659b148fa5 authored by Jyh-Miin Lin on 06 October 2020, 22:21:28 UTC
doc
doc
Tip revision: ae5a254
setup.py
from setuptools import setup
import sys
#if sys.version_info[0] == 2:
# sys.exit("Sorry, Python 2 is not supported yet")
setup(name='pynufft',
version='2020.2.1',
description='Python non-uniform fast Fourier transform (PyNUFFT)',
author='Jyh-Miin Lin',
author_email='jyhmiinlin@gmail.com',
url = 'https://github.com/jyhmiinlin/pynufft', # use the URL to the github repo
install_requires = ['numpy', 'scipy'],
license='LGPLv3, AGPL',
packages=['pynufft'],
package_dir={'pynufft':'.'},
package_data={'pynufft':['nufft','src','tests','linalg','nufft/*','src/*','src/*/*','tests/*','example/*', 'linalg/*']},
include_package_data=True,
zip_safe=False)

Computing file changes ...