forked from XiaoyuBIE1994/DVAE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 992 Bytes
/
setup.py
File metadata and controls
38 lines (35 loc) · 992 Bytes
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
# -*- coding: utf-8 -*-
"""
Software dvae-speech
Copyright Inria
Year 2020
Contact : xiaoyu.bie@inria.fr
License agreement in LICENSE.txt
"""
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name="dvae-speech",
version="1.0",
author="Xiaoyu BIE",
author_email="xiaoyu.bie@inria.fr",
description="Dynamical Variation Auto-Encoder for speech re-synthesis",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://gitlab.inria.fr/xbie/dvae-speech',
packages=find_packages(),
# package_dir={'dvae', 'dvae'},
install_requires=[
'numpy',
'matplotlib',
'soundfile',
'librosa',
'torch>=1.3.0+cu92',
'speechmetrics @ git+https://github.com/aliutkus/speechmetrics#egg=speechmetrics[cpu]',
],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
],
)