Metadata-Version: 1.2
Name: django-directory-tree
Version: 0.1
Summary: A Django app to conduct Web-based directory-tree.
Home-page: https://www.example.com/
Author: topper
Author-email: a5810091a@gmail.com
License: MIT License
Description: # Directory-Tree
        
        Directory Tree is a Django app to see all directory in media folder.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "polls" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'directory_tree',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            path('dir_tree/', include('directory_tree.urls')),
        
        3. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a poll (you'll need the Admin app enabled).
        
        4. Visit http://127.0.0.1:8000/dir_tree/ to participate in the directory tree.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.5
