https://github.com/jyhmiinlin/pynufft
Revision 6eedb3d75e3df6e46e342b439727673f0097188a authored by Your Name on 19 January 2016, 21:45:15 UTC, committed by Your Name on 19 January 2016, 21:45:15 UTC
1 parent a2d304a
Raw File
Tip revision: 6eedb3d75e3df6e46e342b439727673f0097188a authored by Your Name on 19 January 2016, 21:45:15 UTC
add setup.py
Tip revision: 6eedb3d
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()

setup(
    # name, version, ...
    long_description=read_md('README.md'),
    install_requires=[]
)


#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.2',
      description='A pythonic non-uniform FFT (NUFFT)',
      author='Jyh-Miin Lin',
      author_email='jyhmiinlin@gmail.com',
      install_requires = ['numpy', 'scipy', 'matplotlib'],
      license='MIT',
      packages=['pynufft'],
      include_package_data=True,
      zip_safe=False)
	
back to top