setup.py
Go to the documentation of this file.
1 # Copyright (c) 2018, Amazon.com, Inc. or its affiliates. All Rights Reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License").
4 # You may not use this file except in compliance with the License.
5 # A copy of the License is located at
6 #
7 # http://aws.amazon.com/apache2.0
8 #
9 # or in the "license" file accompanying this file. This file is distributed
10 # on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
11 # express or implied. See the License for the specific language governing
12 # permissions and limitations under the License.
13 
14 import os
15 from distutils.core import setup
16 from catkin_pkg.python_setup import generate_distutils_setup
17 
18 
19 # ROS PACKAGING
20 # using distutils : https://docs.python.org/2/distutils
21 # fetch values from package.xml
22 setup_args = generate_distutils_setup(
23  packages=[
24  'tts',
25  ],
26  package_dir={
27  '': 'src',
28  },
29  package_data={
30  '': ['data/*.ogg', 'data/models/polly/2016-06-10/*.json']
31  },
32 )
33 setup(**setup_args)


tts
Author(s): AWS RoboMaker
autogenerated on Fri Mar 5 2021 03:06:38