# hn has no third-party dependencies: json, urllib.request, pathlib, datetime
# and typing are all standard library.
#
# This file previously listed those module names, which made
# `pip install -r requirements.txt` fail outright — json and urllib.request have
# no distribution on PyPI. Worse, `typing` and `pathlib` DO exist there as
# backports for Python 2 and 3.4, and installing them on a modern interpreter
# shadows the standard library with older implementations.
#
# Kept as an empty file rather than deleted so the documented install step still
# works.
