forked from ParhamP/Speech-Hacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 888 Bytes
/
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
from setuptools import setup
with open("README.rst", "rb") as f:
long_description = f.read()
setup(
name='Speech-Hacker',
packages=['Speech-Hacker'],
version='2.3',
scripts=['Speech-Hacker/Speech-Hacker', 'Speech-Hacker/generator.py',
'Speech-Hacker/trainer.py'],
description="Makes famous people speak whatever you wish by" +
"linking their words",
long_description=long_description,
author='Parham Pourdavood',
author_email='[email protected]',
url='https://github.com/parhamp/Speech-Hacker',
download_url='https://github.com/parhamp/Speech-Hacker/tarball/0.7',
keywords=['Speech', 'Linking Words', 'Speech Hacking', 'audio', 'ibm',
'watson', 'simpleaudioindexer'], # arbitrary keywords
classifiers=[],
install_requires=['SimpleAudioIndexer', 'pydub'],
license="Apache-2.0"
)