-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.48 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ttsai"
version = "0.1.0"
description = "Python SDK for the TTS.ai text-to-speech API"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "TTS.ai", email = "support@tts.ai"},
]
keywords = ["tts", "text-to-speech", "voice", "ai", "speech-synthesis", "voice-cloning"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"requests>=2.20.0",
]
[project.optional-dependencies]
async = ["aiohttp>=3.8.0"]
dev = [
"aiohttp>=3.8.0",
"pytest>=7.0",
"pytest-asyncio>=0.20",
"responses>=0.20",
"aioresponses>=0.7",
]
[project.urls]
Homepage = "https://tts.ai"
Documentation = "https://tts.ai/api/"
Repository = "https://github.com/ttsaigit/tts-python"
Issues = "https://github.com/ttsaigit/tts-python/issues"
[tool.setuptools.packages.find]
include = ["tts_ai*"]
[tool.setuptools.package-data]
tts_ai = ["py.typed"]