add black and mypy to CI
Browse files
Makefile
CHANGED
@@ -8,6 +8,8 @@ ci:
|
|
8 |
pip install pipenv
|
9 |
pipenv install --dev
|
10 |
pipenv run flake8
|
|
|
|
|
11 |
pipenv run pytest --cov-report term-missing --cov=pytube --ignore=W605
|
12 |
|
13 |
clean: clean-build clean-pyc
|
|
|
8 |
pip install pipenv
|
9 |
pipenv install --dev
|
10 |
pipenv run flake8
|
11 |
+
pipenv run black pytube --diff
|
12 |
+
pipenv run mypy pytube
|
13 |
pipenv run pytest --cov-report term-missing --cov=pytube --ignore=W605
|
14 |
|
15 |
clean: clean-build clean-pyc
|
setup.py
CHANGED
@@ -49,4 +49,13 @@ setup(
|
|
49 |
long_description=long_description,
|
50 |
zip_safe=True,
|
51 |
python_requires='>=3.5',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
)
|
|
|
49 |
long_description=long_description,
|
50 |
zip_safe=True,
|
51 |
python_requires='>=3.5',
|
52 |
+
project_urls={
|
53 |
+
"Bug Reports": "https://github.com/hbmartin/pytube3/issues",
|
54 |
+
},
|
55 |
+
keywords=[
|
56 |
+
"youtube",
|
57 |
+
"download",
|
58 |
+
"video",
|
59 |
+
"stream",
|
60 |
+
],
|
61 |
)
|