-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.21 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
from setuptools import setup
setup(
name='torch_speech_dataloader',
version='0.0.4',
description='A ready-to-use pytorch dataloader for audio classification, speech classification, speaker recognition, etc. with in-GPU augmentations',
url='https://github.com/zabir-nabil/torch-speech-dataloader',
author='Zabir Al Nazi',
author_email='[email protected]',
license='MIT',
packages=['torch_speech_dataloader'],
install_requires=['torch_audiomentations>=0.11.0',
'numpy>=1.20.2',
'matplotlib==3.5.3',
'torch',
'torchaudio',
'scipy'
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research/Audio Processing',
'License :: MIT',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
include_package_data=True,
package_data={"torch_speech_dataloader": ['audio_assets/*.wav']}
)