Metadata-Version: 2.1
Name: bincrafters_envy
Version: 0.1.1
Summary: Bincrafters script to update environment variables for travis and appveyor
Home-page: https://github.com/bincrafters/bincrafters-envy
Author: Bincrafters
Author-email: bincrafters@gmail.com
License: MIT
Description: [![Build Status](https://travis-ci.org/bincrafters/bincrafters-envy.svg?branch=master)](https://travis-ci.org/bincrafters/bincrafters-envy)
        [![Build status](https://ci.appveyor.com/api/projects/status/bb3844r6mnu7gy1g?svg=true)](https://ci.appveyor.com/project/BinCrafters/bincrafters-envy)
        [![codecov](https://codecov.io/gh/bincrafters/bincrafters-envy/branch/master/graph/badge.svg)](https://codecov.io/gh/bincrafters/bincrafters-envy)
        [![download](https://img.shields.io/badge/download-pypi-blue.svg)](https://pypi.org/project/bincrafters-envy)
        
        # Bincrafters Envy
        
        Update environment variables for travis and appveyor
        
        #### Install
        To install using pypi.org:
        
            pip install bincrafters-envy
        
        #### Usage
        first, you'll need to obtains travis and appveyor tokens
        
        to obtain appveyor token, visit this [page](https://ci.appveyor.com/api-token)
        
        to obtain travis token, install travis [ruby client](https://github.com/travis-ci/travis.rb), then run:
        
            travis login
            travis token
        
        put your appveyor token into file named **appveyor.token**
        
        put your travis token into file named **travis.token**
        
        create **env.ini** file with your environment variables (take a look at the **env.ini.example**):
        
        ```
        [env]
        CONAN_LOGIN_USERNAME = <your username>
        CONAN_PASSWORD = <your password>
        ```
        
        then run `python envy.py -p <project>` (e.g. `python envy.py -p conan-libastral`)
        
        #### Testing
        To run all unit tests:
        
            cd tests
            pytest -v -s --cov=bincrafters_envy
        
        #### LICENSE
        [MIT](LICENSE)
        
Keywords: conan,C/C++,package,libraries,developer,manager,dependency,tool,c,c++,cpp
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: test
