Fix setup.py to detect new package

This commit is contained in:
Ivan Habunek 2021-01-14 22:08:13 +01:00
parent 9e2bbd7e39
commit baeaedaa54
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python
from setuptools import setup
from setuptools import setup, find_packages
long_description = """
Quickly download videos from twitch.tv.
@ -27,7 +27,7 @@ setup(
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=['twitchdl'],
packages=find_packages(),
python_requires='>=3.5',
install_requires=[
"m3u8>=0.3.12,<0.4",