mirror of
https://github.com/rany2/edge-tts
synced 2024-11-22 01:45:02 +00:00
09956e3a20
Signed-off-by: rany2 <rany2@riseup.net>
11 lines
223 B
Python
11 lines
223 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",
|
|
"certifi>=2023.11.17",
|
|
],
|
|
)
|