https://github.com/jyhmiinlin/pynufft
Revision 4f6d6637a032111295abc3b878c9b670f234395a authored by Your Name on 24 December 2016, 10:52:16 UTC, committed by Your Name on 24 December 2016, 10:52:16 UTC
1 parent 45251af
Raw File
Tip revision: 4f6d6637a032111295abc3b878c9b670f234395a authored by Your Name on 24 December 2016, 10:52:16 UTC
version 0.3.1.8
Tip revision: 4f6d663
setup.py
#from setuptools import setup
#try:
#    from pypandoc import convert
#    read_md = lambda f: convert(f, 'rst')
#except ImportError:
#    print("warning: pypandoc module not found, could not convert Markdown to RST")
#    read_md = lambda f: open(f, 'r').read()



#import os
#long_description = 'A pythonic non-uniform FFT'
#if os.path.exists('README.txt'):
#    long_description = open('README.txt').read()

from setuptools import setup

setup(name='pynufft',
      version='0.3.1.8',
      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', 'matplotlib'],
      license='MIT',
      packages=['pynufft'],
      package_dir={'pynufft':'pynufft'},
      package_data={'pynufft':['data/*.txt']},
      include_package_data=True,
      zip_safe=False)
	
back to top