mirror of
https://github.com/rany2/edge-tts
synced 2024-11-23 20:18:19 +00:00
93fb851cd2
Signed-off-by: rany <rany2@riseup.net>
14 lines
336 B
Python
14 lines
336 B
Python
from setuptools import setup
|
|
|
|
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
|
|
setup(
|
|
name="edge-tts",
|
|
install_requires=[
|
|
"aiohttp>=3.8.0,<4.0.0",
|
|
"certifi>=2023.11.17",
|
|
"srt>=3.4.1,<4.0.0",
|
|
"tabulate>=0.4.4,<1.0.0",
|
|
"typing-extensions>=4.1.0,<5.0.0",
|
|
],
|
|
)
|