Metadata-Version: 2.1
Name: django-collect-and-ignore
Version: 0.1.1
Summary: Custom collectstatic for django with ignoring commonly copied unnecessary files
Home-page: https://github.com/marinko-peso/django-collect-and-ignore
Author: Marinko Peso
Author-email: marinko.peso@gmail.com
License: MIT
Description: # django-collect-and-ignore
        Custom collectstatic for django with ignoring commonly copied unnecessary files
        
        
        
        ## Installation
        
        Available via PyPi, supports Python 2.x and 3.x.
        ```sh
        pip install django-collect-and-ignore
        ```
        
        
        ## Usage
        
        ```sh
        ./manage.py collect_and_ignore --additional_options
        ```
        
        Can be tweaked from settings:
        - COLLECT_AND_IGNORE_PATTERNS [patters to ignore, needs to be a list of strings]
        - COLLECT_AND_IGNORE_NO_INPUT [wheter to ask for input, boolean, default is False]
        
        ```python
        DEFAULT_PATTERNS = [
            '__tests__',
            'tests',
            '*.test.js',
            '*.scss',
            '*.less',
            'config.rb'
        ]
        ```
        
        
        ## License
        
        MIT.
        
Keywords: django collectstatic custom ignore
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
