https://github.com/jyhmiinlin/pynufft
Revision fc784fa2deed75b393c951d294d819b02ee85573 authored by Jyh-Miin Lin on 07 October 2020, 00:20:08 UTC, committed by Jyh-Miin Lin on 07 October 2020, 00:20:08 UTC
1 parent 1890db0
Raw File
Tip revision: fc784fa2deed75b393c951d294d819b02ee85573 authored by Jyh-Miin Lin on 07 October 2020, 00:20:08 UTC
add files
Tip revision: fc784fa
setup.py

from setuptools import setup

import sys
#if sys.version_info[0] == 2:
#    sys.exit("Sorry, Python 2 is not supported yet")
with open("README.md", "r") as fh:
    long_description = fh.read()

setup(name='pynufft',
      version='2020.2.3',
      description='Python non-uniform fast Fourier transform (PyNUFFT)',
      author='PyNUFFT',
      author_email='pynufft@gmail.com',
      url = 'https://github.com/jyhmiinlin/pynufft', # use the URL to the github repo
      install_requires = ['numpy', 'scipy'],
      license='LGPLv3, AGPL',
      long_description=long_description,
      long_description_content_type="text/markdown",
      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