Add requirements.txt
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -9,3 +9,4 @@
|
|||||||
!src
|
!src
|
||||||
!src/edgeTTS
|
!src/edgeTTS
|
||||||
!src/edgeTTS/**
|
!src/edgeTTS/**
|
||||||
|
!requirements.txt
|
||||||
|
|||||||
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
requests
|
||||||
|
websockets
|
||||||
6
setup.py
6
setup.py
@@ -14,9 +14,12 @@ if os.name == 'posix':
|
|||||||
with open("README.md", "r", encoding="utf-8") as fh:
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
|
with open('requirements.txt') as f:
|
||||||
|
required = f.read().splitlines()
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="edge-tts",
|
name="edge-tts",
|
||||||
version="0.0.2",
|
version="0.0.3",
|
||||||
author="rany",
|
author="rany",
|
||||||
author_email="ranygh@riseup.net",
|
author_email="ranygh@riseup.net",
|
||||||
description="Microsoft Edge's TTS",
|
description="Microsoft Edge's TTS",
|
||||||
@@ -35,4 +38,5 @@ setuptools.setup(
|
|||||||
packages=setuptools.find_packages(where="src"),
|
packages=setuptools.find_packages(where="src"),
|
||||||
scripts=scripts,
|
scripts=scripts,
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.6",
|
||||||
|
install_requires=required,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user