forked from pynufft/pynufft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 884 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.1.2',
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='AGPL-v3',
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)