Metadata-Version: 2.1
Name: django-document-catalogue
Version: 0.4.0
Summary: A simple, lightweight, stand-alone, hierarchical document library as a reusable Django app.
Author-email: powderflask <powderflask@gmail.com>
License: MIT License
        
        Copyright (c) 2018 powderflask (Driftwood Cove Designs)
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of
        this software and associated documentation files (the "Software"), to deal in
        the Software without restriction, including without limitation the rights to
        use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
        of the Software, and to permit persons to whom the Software is furnished to do
        so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/powderflask/django_document_catalogue
Project-URL: Repository, https://github.com/powderflask/django_document_catalogue
Project-URL: Documentation, https://django-document-catalogue.readthedocs.io
Keywords: Django,Python
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
Requires-Python: <4,>=3.7
Description-Content-Type: text/markdown
Provides-Extra: docs
Provides-Extra: style
Provides-Extra: test
Provides-Extra: utils
License-File: LICENSE
License-File: AUTHORS

# Django Document Catalogue
#### Version: 0.4.0

[![Tests](https://github.com/JacobTumak/django_document_catalogue/actions/workflows/pytest.yaml/badge.svg)](https://github.com/JacobTumak/django_document_catalogue/actions/workflows/pytest.yaml)

Simple, light-weight, stand-alone, hierarchical document library as a
reusable django app.

## Use Case:
 * you need a library of static media documents (PDF or other formats);
 * documents are organized in hierarchical categories;

## Features:
 * permanent URLs for direct access to document, category, and file download (even if filename changes)
 * opt-out private file storage (file storage / downloads protected by login, on by default)
 * plugin permissions settings
 * plugin document list view customization
 * upload / edit / delete documents via django admin, and/or..,
 * opt-in user-facing edit / upload / delete views and AJAX API

## Dependencies:
 * python 3.7+
 * django 3.2+
 * [django-mptt](https://django-mptt.readthedocs.io/en/latest/index.html)

### Configurable file handling:
 * [django-private-storage](https://pypi.org/project/django-private-storage/)

 or

 * [django-constrainedfilefield](https://github.com/mbourqui/django-constrainedfilefield)
 * [python-magic](https://github.com/ahupp/python-magic) (if you want to validate file content_types)

### Opt-in:
 * [dropzone](https://www.dropzonejs.com/): drag-and-drop file uploads
 * [django-admin-sortable2](https://django-admin-sortable2.readthedocs.io): drag-and-drop document ordering

## Get Me Some of That
* [Source Code](https://github.com/powderflask/django_document_catalogue)
* [Read The Docs](https://django-document-catalogue.readthedocs.io/en/latest/)
* [Issues](https://github.com/powderflask/django_document_catalogue/issues)
* [PyPI](https://pypi.org/project/django-document-catalogue)

[MIT License](https://github.com/powderflask/django_document_catalogue/blob/master/LICENSE)
