-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
27 lines (25 loc) · 962 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
25
26
27
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
version = "0.9"
setup(
name="python-voicetext",
version=version,
license="Apache License 2.0",
description="Voice synthesiser using VoiceText Web API",
long_description="See also https://github.com/youtalk/python-voicetext#readme",
author="Yutaka Kondo",
author_email="yutaka.kondo@youtalk.jp",
url="https://github.com/youtalk/python-voicetext",
packages=find_packages(),
download_url="https://github.com/youtalk/python-voicetext/releases/tag/" + version,
install_requires=["requests", "playsound"],
platforms=["POSIX", "Mac OS X", "Windows"],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Multimedia :: Sound/Audio",
],
)