mirror of
https://github.com/timsainb/noisereduce.git
synced 2022-05-11 23:09:24 +03:00
* 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>
29 lines
887 B
Python
Executable File
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"],
|
|
}
|
|
)
|