Metadata-Version: 2.1
Name: manifestoo_core
Version: 0.10.3
Summary: A library to reason about Odoo addons manifests
Project-URL: Homepage, https://github.com/sbidoul/manifestoo-core
Project-URL: Documentation, https://manifestoo-core.readthedocs.io/en/stable/
Project-URL: Changelog, https://manifestoo-core.readthedocs.io/en/stable/changelog.html
Project-URL: Source, https://github.com/sbidoul/manifestoo-core
Author-email: Stéphane Bidoul <stephane.bidoul@acsone.eu>
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Odoo
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6
Requires-Dist: importlib-resources; python_version < '3.7'
Requires-Dist: typing-extensions; python_version < '3.8'
Provides-Extra: doc
Requires-Dist: furo; extra == 'doc'
Requires-Dist: myst-parser; extra == 'doc'
Requires-Dist: sphinx; extra == 'doc'
Requires-Dist: sphinxcontrib-towncrier; extra == 'doc'
Requires-Dist: towncrier<22.8; extra == 'doc'
Provides-Extra: metadata
Requires-Dist: setuptools-odoo>=3.1; extra == 'metadata'
Provides-Extra: test
Requires-Dist: coverage[toml]; extra == 'test'
Requires-Dist: pkg-metadata; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Description-Content-Type: text/markdown

# Manifestoo Core

[![Github-CI][github-ci]][github-link]
[![Coverage Status][codecov-badge]][codecov-link]
[![PyPI][pypi-badge]][pypi-link]

<!--- shortdesc-begin -->

A library to reason about [Odoo](https://odoo.com) addons manifests.

<!--- shortdesc-end -->

## Installation

<!--- install-begin -->

```console
pip install manifestoo-core
```

<!--- install-end -->

## Features

<!--- features-begin -->

`manifestoo_core` provides the following features:

* Detect the Odoo series from an addon version.
* Information about core Odoo CE and EE addons for each Odoo version.
* Convert Odoo manifest metadata to Python Packaging Metadata.

Read the [documentation](https://manifestoo-core.readthedocs.io/) for more information.

```{warning}
Any part of the library that is not documented may change without notice.
```

<!--- features-end -->

[github-ci]: https://github.com/sbidoul/manifestoo-core/actions/workflows/ci.yml/badge.svg
[github-link]: https://github.com/sbidoul/manifestoo-core
[codecov-badge]: https://codecov.io/gh/sbidoul/manifestoo-core/branch/master/graph/badge.svg
[codecov-link]: https://codecov.io/gh/sbidoul/manifestoo-core
[pypi-badge]: https://img.shields.io/pypi/v/manifestoo-core.svg
[pypi-link]: https://pypi.org/project/manifestoo-core
