https://github.com/mikgroup/sigpy
Raw File
Tip revision: 67099ea373385bba1faefb1d92ccee1b240e8cbc authored by Frank Ong on 21 August 2020, 18:09:29 UTC
Bump version: 0.1.19 → 0.1.20
Tip revision: 67099ea
setup.py
import sys
from setuptools import setup, find_packages
from sigpy.version import __version__  # noqa

if sys.version_info < (3, 5):
    sys.exit('Sorry, Python < 3.5 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='frankong@berkeley.edu',
      license='BSD',
      packages=find_packages(),
      install_requires=REQUIRED_PACKAGES,
      classifiers=[
          "Programming Language :: Python :: 3",
          "License :: OSI Approved :: BSD License",
          "Operating System :: OS Independent",
      ]
      )
back to top