-
Notifications
You must be signed in to change notification settings - Fork 232
/
setup.py
executable file
·28 lines (26 loc) · 880 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="noisereduce",
packages=find_packages(),
version="3.0.3",
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", "numpy", "tqdm", "joblib"],
extras_require={
"PyTorch": ["torch>=1.9.0"],
},
)