File: setup.py

package info (click to toggle)
pycsspeechtts 1.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: python: 112; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 661 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
    long_description = fh.read()
setup(name='pycsspeechtts',
      version='1.0.8',
      description='Python 3 interface to Microsoft Cognitive Services Text To Speech',
      long_description=long_description,
      long_description_content_type="text/markdown",
      url='https://github.com/jeroenterheerdt/pycsspeechtts',
      author='Jeroen ter Heerdt',
      license='MIT',
      install_requires=['requests>=2.0'],
      tests_require=['mock'],
      test_suite='tests',
      packages=find_packages(exclude=["dist"]),
      include_package_data=True,
      zip_safe=True)