Metadata-Version: 1.0
Name: ai-django-core
Version: 1.2.0
Summary: Lots of helper functions and useful widgets.
Home-page: https://gitlab.ambient-innovation.com/ai/ai-django-core.git
Author: Ambient Innovation GmbH
Author-email: hello@ambient-innovation.com
License: The MIT License (MIT)
Description: # Overview:
        This package contains various useful helper functions.  
        
        
        # Installation:
        - Add a requirement to your requirements.txt: 
            
            `ai-django-core`
        
        - Add module to `INSTALLED_APPS`:
        
            `ai`
        
        - Run migrations
        
        
        # Contribute
        
        - Clone the project locally
        - Create a new branch for your feature
        - Change the dependency in your requirements.txt to a local (editable) one that points to your local file system:
            ```
            -e /Users/felix/Documents/workspace/ai-django-core
            ``` 
        - Ensure the code passes the tests
        - Run: 
            
            `python setup.py develop`
            
        - Create a pull request
        
        # Publish to PyPI
        
        - Run:
        
            `python setup.py sdist upload`
        
        If you run into trouble, please create a file in your home directory: ~/.pypirc
        
        ```
        [distutils]
        index-servers =
            pypi
        
        [pypi]
        repository: https://upload.pypi.org/legacy/
        username: 
        password: 
        ```
        
        
        # Tests
        
        - Check coverage
        
            `pytest --cov=ai-django-core`
            
        - Run tests
        
            `pytest`
        
Platform: UNKNOWN
