Metadata-Version: 1.1
Name: nima_cast
Version: 0.1.3
Summary: This is a project that could connect to a minio server and sream the conents on a chromecast device.
Home-page: https://github.com/nimamahmoudi/nima_cast
Author: Nima Mahmoudi
Author-email: nima_mahmoudi@live.com
License: UNKNOWN
Description: # nima_cast
        
        
        # Installation
        
        Install using pip:
        ```bash
        $ pip install nima_cast
        ```
        
        Upgrading:
        ```bash
        pip install nima_cast --upgrade
        ```
        
        # Minio Configuration
        
        On windows: 
        
        ```bash
        set ACCESS_KEY=XXXXXXXXXXXXXXXXX
        set SECRET_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
        set MINIO_SERVER=YOUR_MINIO_SERVER:9000
        ```
        
        On ubuntu:
        
        ```bash
        export ACCESS_KEY=XXXXXXXXXXXXXXXXX
        export SECRET_KEY=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
        export MINIO_SERVER=YOUR_MINIO_SERVER:9000
        ```
        
        # Running the app
        
        ```bash
        $ nima_cast
        ```
        
        # Options
        
        - use `--no-minio` for streaming purposes (no need to connect to minio).
        - use `--show-debug` to see debug messages from the cast.
        
        # Publishing
        
        Install dependencies:
        ```bash
        pip install twine
        ```
        
        Update the version in `nima_cast/__init__.py`, create a source distribution and upload them:
        ```bash
        nano nima_cast/__init__.py
        python setup.py sdist
        twine upload dist/*
        ```
        
        Add travis info:
        
        ```bash
        travis encrypt your-password-here --add deploy.password
        ```
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
