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

@@ -19,8 +19,7 @@ package_dir=
= src
packages = find:
python_requires = >=3.7
install_requires =
aiohttp==3.8.3
# Dependencies are in setup.py for GitHub's dependency graph.
[options.packages.find]
where=src

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