edge-tts/setup.py
2023-08-12 17:26:30 +03:00

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.07.22",
],
)