Metadata-Version: 2.4
Name: django-yt-logviewer
Version: 0.1.1
Summary: Reusable Django app providing a web UI for viewing log files.
Author-email: Lilong Zhang <and2long@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/and2long/django-logviewer
Project-URL: Source, https://github.com/and2long/django-logviewer
Project-URL: Issues, https://github.com/and2long/django-logviewer/issues
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django>=4.2
Dynamic: license-file

# django-yt-logviewer

A reusable Django app that adds a web interface for browsing project log files.

## Usage

1. Install the package:

   ```bash
   pip install django-yt-logviewer
   ```

2. Add the app to `INSTALLED_APPS`:

   ```python
   INSTALLED_APPS = [
       # ...
       "logviewer",
   ]
   ```
