-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
35 lines (30 loc) · 883 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
30
31
32
33
34
35
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='nsnet2-denoiser',
version="0.2.3",
description='NSNet2 Deep Noise Suppression (DNS) package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/NeonGeckoCom/nsnet2-denoiser',
author='Neongecko',
author_email='[email protected]',
license='CC-BY-4.0, MIT',
packages=find_packages(),
python_requires='>3.6.0',
install_requires=[
"onnxruntime",
"torch",
"numpy",
"soundfile",
"scipy"
],
zip_safe=True,
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Programming Language :: Python :: 3.6',
]
)