mirror of
https://github.com/rany2/edge-tts
synced 2024-11-22 01:45:02 +00:00
9c53e1eb3a
* Bump to 5.0.6 * Require >=3.8.0
10 lines
192 B
Python
10 lines
192 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",
|
|
],
|
|
)
|