Metadata-Version: 1.1
Name: sparweltbitool
Version: 0.1.5
Summary: Standard modules used by Sparwelt GmbH BI Team in Web Services
Home-page: https://github.com/sparwelt/bitool.git
Author: Paweł Graczyk
Author-email: abs-saas@sparwelt.de
License: MIT
Description: ============
        sparwelttool
        ============
        
        Goal and responsibility
        =======================
        
        Python library with standard modules used by Sparwelt GmbH BI Team in Web Services.
        
        Modules
        =======================
        
        - client_emarsys - Connection to Emarsys WebAPI
        - client_redis - Connection to Redis
        - client_s3 - Connection to AWS s3 API
        - config - Initialization for config
        - execution_time - Calculation of Execution time
        - logger - Initialization of logger
        - redshift - Connection to Redshift
        - singleton - singleton decorator
        - validation - validators for voluptuous library
        
        Publishing in PyPI (Ubuntu 14.04)
        ===========================================
        
        Create file for authorization to pypi ~/.pypirc
        
        ::
        
            [server-login]
            username:sparwelt
            password:<PASSWORD_HERE>
        
        Install all tools required for submiting new version to PyPI
        
        ::
        
            virtualenv -p /usr/bin/python3 dev
            pip install -U "pip>=1.4" "setuptools>=0.9" "wheel>=0.21"
            python3 setup.py register
            python3 setup.py sdist bdist_wheel upload
        
        
        Command 'python setup.py register' is required only on creation of package.
        On every new upload new version should be created.
        Keep Semantic Versioning like described in: http://semver.org/.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
