Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
frictionless>=3.23.4
frictionless[json]>=3.23.4
shortuuid>=1.0.1
cdxj-indexer>=1.4.4
boilerpy3>=1.0.2
pytest-cov>=2.10.1
PyYAML>=5.3.1
black>=20.8b1
jsonlines>=3.0.0
click>=8.0.0
typer==0.11.1
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ def long_description():
long_description=long_description(),
long_description_content_type="text/markdown",
install_requires=load_requirements("requirements.txt"),
extras_require={"signing": ["authsign>=0.5.1", "requests"]},
extras_require={
"signing": ["authsign>=0.5.1", "requests"],
"dev": ["black"],
"test": ["pytest", "pytest-cov>=2.10.1"],
},
zip_safe=True,
setup_requires=["pytest-runner"],
entry_points="""
Expand Down
1 change: 0 additions & 1 deletion tests/test_optional_flags_wacz.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from wacz.main import main, now
from wacz.util import hash_file
from unittest.mock import patch
import jsonlines

TEST_DIR = os.path.join(os.path.dirname(os.path.realpath(__file__)), "fixtures")
PAGES_DIR = os.path.join(TEST_DIR, "pages")
Expand Down