https://github.com/jyhmiinlin/pynufft
Revision e5b194b013a204c7476e66da6e0588553cc843a5 authored by Your Name on 20 January 2016, 08:39:12 UTC, committed by Your Name on 20 January 2016, 08:39:12 UTC
1 parent 0682d61
Raw File
Tip revision: e5b194b013a204c7476e66da6e0588553cc843a5 authored by Your Name on 20 January 2016, 08:39:12 UTC
fix
Tip revision: e5b194b
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