Metadata-Version: 2.1
Name: django-static-respond
Version: 1.4.2.2
Summary: Django application contain respond static files.
Home-page: UNKNOWN
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: # django-static-respond
        
        Django application contain respond static files.
        
        
        ## Install
        
        ```shell
        pip install django-static-respond
        ```
        
        ## Settings
        
        ```python
            INSTALLED_APPS = [
                ...
                "django_static_respond",
                ...
            ]
        ```
        
        ## Use static resource
        
        ```html
        {% load staticfiles %}
        
        <script src="{% static "respond/respond.min.js" %}"></script>
        ```
        
        ## About the version
        
        - django-static-respond uses version number like v1.4.2.1.
        - The first three number is the version of the respond static files.
        - The fourth number is the build number of this package.
        
        ## Releases
        
        ### v1.4.2.2 2020/03/17
        
        - Remove src folder, use python way to do the package.
        
        ### v1.4.2.1 2018/03/28
        
        - First release.
Keywords: django-static-respond
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires: django
Description-Content-Type: text/markdown
