forked from resemble-ai/Resemblyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.02 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='Resemblyzer-Ideas',
version='0.1.4',
packages=find_packages(),
package_data={
'resemblyzer-ideas': ['pretrained.pt']
},
python_requires='>=3.5',
install_requires=['librosa>=0.9.1',
'numpy>=1.10.1',
'webrtcvad>=2.0.10',
'torch>=1.0.1',
'scipy>=1.2.1',
'typing'],
author='Christian Schäfer (original repo Corentin Jemine)',
author_email='[email protected]',
description='Analyze and compare voices with deep learning',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/as-ideas/Resemblyzer',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)