Files
noisereduce/setup.py
Tim Sainburg 7013c987aa Update to version 2, which adds several features (#46)
* update to v2

* updated readme

* updated noisereduce logo

* updated noisereduce logo

* added tests

* added tests

* added tests

* added tests

* updated tests

Co-authored-by: Timothy J Sainburg <tsainbur@txori.ucsd.edu>
2021-07-18 13:40:15 -07:00

29 lines
887 B
Python
Executable File

from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="noisereduce",
packages=find_packages(),
version="2.0.0",
description="Noise reduction using Spectral Gating in python",
author="Tim Sainburg",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/timsainb/noisereduce",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Scientific/Engineering",
],
install_requires=["scipy", "matplotlib", "librosa", "numpy", "tqdm"],
extras_require={
'Tensorflow': ["tensorflow>=2.0"],
}
)