forked from mikgroup/sigpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 922 Bytes
/
setup.py
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
26
27
28
29
import sys
from setuptools import setup, find_packages
from sigpy.version import __version__ # noqa
if sys.version_info < (3, 6):
sys.exit('Sorry, Python < 3.6 is not supported')
REQUIRED_PACKAGES = ['numpy', 'pywavelets', 'numba', 'scipy', 'tqdm']
with open("README.rst", "r") as f:
long_description = f.read()
setup(name='sigpy',
version=__version__,
description='Python package for signal reconstruction.',
long_description=long_description,
long_description_content_type="text/x-rst",
url='http://github.com/mikgroup/sigpy',
author='Frank Ong',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
install_requires=REQUIRED_PACKAGES,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
)