Metadata-Version: 2.4
Name: bigfoot
Version: 0.21.0
Summary: DEPRECATED: bigfoot has been renamed to python-tripwire. Install python-tripwire instead.
Project-URL: Homepage, https://github.com/axiomantic/python-tripwire
Project-URL: Renamed To, https://pypi.org/project/python-tripwire/
Project-URL: Repository, https://github.com/axiomantic/python-tripwire
License: MIT
Keywords: deprecated,renamed,tripwire
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.10
Requires-Dist: python-tripwire>=0.20.1
Description-Content-Type: text/markdown

# bigfoot has been renamed to `python-tripwire`

This package is a **deprecation shim**. The project formerly published as
`bigfoot` is now published as [`python-tripwire`](https://pypi.org/project/python-tripwire/).

## Migrate

```bash
pip uninstall bigfoot
pip install python-tripwire
```

Then update your imports:

```python
# old
import bigfoot

# new
import tripwire
```

## What this shim does

Installing `bigfoot` now pulls in `python-tripwire` as a dependency and
re-exports it under the `bigfoot` name with a `DeprecationWarning` on
import. Existing code that imports `bigfoot` will continue to work for
the time being, but **this shim will not receive further updates**. New
features, bug fixes, and security patches all land in `python-tripwire`.

## Links

- New project page: <https://pypi.org/project/python-tripwire/>
- Source repository: <https://github.com/axiomantic/python-tripwire>
- Issues: <https://github.com/axiomantic/python-tripwire/issues>
