https://github.com/jyhmiinlin/pynufft
Revision 2ad4af2993691473570433f3994b55580ce41764 authored by Your Name on 16 December 2016, 16:37:05 UTC, committed by Your Name on 16 December 2016, 16:37:05 UTC
change the version to 0.3
1 parent 21ce5cf
Raw File
Tip revision: 2ad4af2993691473570433f3994b55580ce41764 authored by Your Name on 16 December 2016, 16:37:05 UTC
update setup.py
Tip revision: 2ad4af2
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.3',
      description='A pythonic non-uniform FFT (pynufft)',
      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