Metadata-Version: 2.1
Name: edgetest-pip-tools
Version: 2022.4.1
Summary: pip-tools integration for edgetest
Home-page: https://github.com/capitalone/edgetest-pip-tools
Author: Akshay Gupta
Author-email: akshay.gupta2@capitalone.com
Maintainer: Akshay Gupta
Maintainer-email: akshay.gupta2@capitalone.com
License: UNKNOWN
Project-URL: Documentation, https://capitalone.github.io/edgetest-pip-tools/
Project-URL: Bug Tracker, https://github.com/capitalone/edgetest-pip-tools/issues
Project-URL: Source Code, https://github.com/capitalone/edgetest-pip-tools
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Provides-Extra: docs
Provides-Extra: tests
Provides-Extra: qa
Provides-Extra: build
Provides-Extra: dev
License-File: LICENSE
License-File: AUTHORS.md

# pip-tools integration for edgetest

![python-3.7](https://img.shields.io/badge/python-3.7-green.svg)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

[Full Documentation](https://capitalone.github.io/edgetest-pip-tools/)

Table Of Contents
-----------------

- [Install](#install)
- [Getting Started](#getting-started)
- [Contributing](#contributing)
- [License](#license)

Install
-------

Installation from PyPI:

```console
$ python -m pip install edgetest-pip-tools
```


Installation from conda-forge:

```console
$ conda install -c conda-forge edgetest-pip-tools
```


Getting Started
---------------

This `edgetest` plugin runs after the test execution. If the last environment successfully
passes, this plugin will refresh `requirements.txt` using `pip-tools`. To use this plugin,
you must use the ``--export`` flag in your CLI call:

```console
$ edgetest --config setup.cfg --export
```

If you want to specify a PyPI index supply `index_url` in your configuration:

```ini
[edgetest.pip_tools]
index_url = ...
```

If you want to include extra installations in your `pip-tools` call (only available for PEP-517
compliant builds), add a newline-separated list of extras:

```ini
[edgetest.pip_tools]
extras =
    complete
```

Contributing
------------

See our [developer documentation](https://capitalone.github.io/edgetest-pip-tools/developer.html).

We welcome and appreciate your contributions! Before we can accept any contributions, we ask that you please be sure to
sign the [Contributor License Agreement (CLA)](https://cla-assistant.io/capitalone/edgetest-pip-tools)

This project adheres to the [Open Source Code of Conduct](https://developer.capitalone.com/resources/code-of-conduct/).
By participating, you are expected to honor this code.

License
-------

Apache-2.0



