-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (44 loc) · 1.47 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
import os
from pathlib import Path
ABSOLUTE_DIR = Path(__file__).parent
NAME = 'cleanunet-denoiser'
VERSION = '0.0.1'
DESCRIPTION = 'CleanUNet based audio denoiser'
AUTHOR_WEBSITE = 'https://www.mahfuzulkabir.com/'
GITHUB_URL = 'https://github.com/Kabir5296/Audio-Denoiser.git'
AUTHOR = "A F M Mahfuzul Kabir"
AUTHOR_EMAIL = "<afmmahfuzulkabir@gmail.com>"
REQUIREMENTS = [
'torchaudio==2.4.1',
'numpy==2.0.2',
'pandas==2.2.3',
'soundfile==0.12.1',
'scipy==1.13.1',
'transformers==4.44.2',
'cleanunet==0.0.3'
]
README = open('README.md').read()
PACKAGE_DATA = 'requirements.txt'
setup(
name = NAME,
version = VERSION,
description = DESCRIPTION,
long_description = README,
long_description_content_type = 'text/markdown',
author = AUTHOR,
author_email = AUTHOR_EMAIL,
license='MIT',
packages = find_packages(where = 'denoiser'),
include_package_data=True,
package_data={'':['requirements.txt']},
install_requires = REQUIREMENTS,
classifiers = [
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9"
],
keywords = ['audio denoise','denoise','cleanunet','speech denoise'],
url = GITHUB_URL
)