Revision 14452db6dff408ebfb342a6e813d8f44d7d9373e authored by Jyh-Miin Lin on 05 October 2022, 01:54:28 UTC, committed by Jyh-Miin Lin on 05 October 2022, 01:54:28 UTC
0 parent
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='2022.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='Open Source Initiative OSI - The MIT License',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['pynufft'],
package_dir={'pynufft':'.'},
package_data={'pynufft':['nufft','src','tests','data','linalg','nufft/*','src/*','src/*/*','tests/*','example/*', 'linalg/*']},
include_package_data=True,
zip_safe=False)
Computing file changes ...