Add back GitHub dependabot/dependency graph support

* Hack from de16718b39/setup.py (L3-L17)
This commit is contained in:
rany2
2022-09-27 13:05:27 +03:00
parent 7b4827352d
commit a5a9a4c478
2 changed files with 9 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
import setuptools
from setuptools import setup
setuptools.setup()
# Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
setup(
name="edge-tts",
install_requires=[
"aiohttp==3.8.3",
],
)