https://github.com/jyhmiinlin/pynufft
Revision 45454c71f6d4e66ec53b515a89745adc6d2ea43d authored by Jyh-Miin Lin on 13 January 2020, 19:47:41 UTC, committed by Jyh-Miin Lin on 13 January 2020, 19:47:41 UTC
1 parent f218ae2
Raw File
Tip revision: 45454c71f6d4e66ec53b515a89745adc6d2ea43d authored by Jyh-Miin Lin on 13 January 2020, 19:47:41 UTC
Move to 2020.0.0.
Tip revision: 45454c7
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.0.0',
      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',
      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)
	
back to top