Metadata-Version: 2.1
Name: ci
Version: 0.1.0
Summary: Easily run common CI tasks in Python
Home-page: https://github.com/rossmacarthur/ci
Author: Ross MacArthur
Author-email: ross@macarthur.io
License: MIT
Download-URL: https://github.com/rossmacarthur/ci/archive/0.1.0.tar.gz
Project-URL: Issue Tracker, https://github.com/rossmacarthur/ci/issues
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
Requires-Dist: click (>=7.0)
Provides-Extra: dev.lint
Requires-Dist: flake8 (>=3.7.0) ; extra == 'dev.lint'
Requires-Dist: flake8-docstrings ; extra == 'dev.lint'
Requires-Dist: flake8-isort ; extra == 'dev.lint'
Requires-Dist: flake8-quotes ; extra == 'dev.lint'
Requires-Dist: pep8-naming ; extra == 'dev.lint'
Provides-Extra: dev.test
Requires-Dist: pytest ; extra == 'dev.test'
Requires-Dist: pytest-cov ; extra == 'dev.test'
Requires-Dist: mock ; extra == 'dev.test'

# ci

Easily run common CI tasks in Python

## Getting started

Install this package with

```bash
pip install ci
```

## Example usage

Run `pip install codecov` only when we are using Python 3.7

```bash
ci --only 3.7 pip install codecov
```

Run `flake8` on all Python versions except `2.7`

```bash
ci --skip 2.7 flake8
```

## License

This project is licensed under the MIT License. See the [LICENSE] file.

[LICENSE]: LICENSE


