https://github.com/jyhmiinlin/pynufft
Revision 5a81cc36c73be1a755ad3319ed36e8bda94c0267 authored by Jyh-Miin Lin on 06 October 2020, 10:18:40 UTC, committed by Jyh-Miin Lin on 06 October 2020, 10:18:40 UTC
1 parent 933ab0e
Raw File
Tip revision: 5a81cc36c73be1a755ad3319ed36e8bda94c0267 authored by Jyh-Miin Lin on 06 October 2020, 10:18:40 UTC
clean up
Tip revision: 5a81cc3
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)
	
back to top