v0.6.2
This commit is contained in:
parent
dd75803635
commit
30af11bfd4
|
@ -1,4 +1,4 @@
|
||||||
requests==2.24.0
|
requests>=2.31.0,<3.0.0
|
||||||
|
|
||||||
# testing
|
# testing
|
||||||
mock==3.0.5
|
mock==3.0.5
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -24,7 +24,7 @@ def get_test_suite():
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="youtube_transcript_api",
|
name="youtube_transcript_api",
|
||||||
version="0.6.1",
|
version="0.6.2",
|
||||||
author="Jonas Depoix",
|
author="Jonas Depoix",
|
||||||
author_email="jonas.depoix@web.de",
|
author_email="jonas.depoix@web.de",
|
||||||
description="This is an python API which allows you to get the transcripts/subtitles for a given YouTube video. It also works for automatically generated subtitles, supports translating subtitles and it does not require a headless browser, like other selenium based solutions do!",
|
description="This is an python API which allows you to get the transcripts/subtitles for a given YouTube video. It also works for automatically generated subtitles, supports translating subtitles and it does not require a headless browser, like other selenium based solutions do!",
|
||||||
|
@ -42,7 +42,7 @@ setuptools.setup(
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
),
|
),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'requests',
|
'requests>=2.31.0,<3.0.0',
|
||||||
],
|
],
|
||||||
tests_require=[
|
tests_require=[
|
||||||
'mock',
|
'mock',
|
||||||
|
|
Loading…
Reference in New Issue