From eaded326a7d6c6411b1bc2d33c7151167228752d Mon Sep 17 00:00:00 2001 From: Jeroen ter Heerdt Date: Mon, 28 Nov 2022 11:20:06 -0800 Subject: [PATCH] bumping to 1.0.8 --- pyproject.toml | 22 ++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..bca8597 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,22 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "pycsspeechtts" +version = "1.0.8" +authors = [ + { name="Jeroen ter Heerdt"}, +] +description = "Python 3 interface to Microsoft Cognitive Services Text To Speech" +readme = "README.md" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.urls] +"Homepage" = "https://github.com/jeroenterheerdt/pycsspeechtts" +"Bug Tracker" = "https://github.com/jeroenterheerdt/pycsspeechtts/issues" \ No newline at end of file diff --git a/setup.py b/setup.py index 55679bb..8e2a007 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ with open("README.md", "r") as fh: long_description = fh.read() setup(name='pycsspeechtts', - version='1.0.7', + 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",