Metadata-Version: 2.1
Name: collective.casestudy
Version: 1.0.0a3
Summary: Case Study content type for Plone.
Home-page: https://github.com/collective/collective.casestudy
Author: Plone Community
Author-email: ericof@plone.org
License: GPL version 2
Project-URL: PyPI, https://pypi.python.org/pypi/collective.casestudy
Project-URL: Source, https://github.com/collective/collective.casestudy
Project-URL: Tracker, https://github.com/collective/collective.casestudy/issues
Keywords: Python Plone CMS
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Plone
Classifier: Framework :: Plone :: Addon
Classifier: Framework :: Plone :: 6.0
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: setuptools
Requires-Dist: Plone
Requires-Dist: plone.api
Requires-Dist: pycountry
Provides-Extra: test
Requires-Dist: zest.releaser[recommended] ; extra == 'test'
Requires-Dist: plone.app.testing (>=7.0.0a3) ; extra == 'test'
Requires-Dist: plone.restapi[test] ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: pytest-plone (>=0.2.0) ; extra == 'test'


<div align="center"><img alt="logo" src="https://raw.githubusercontent.com/collective/collective.casestudy/main/docs/icon.svg" width="70" /></div>

<h1 align="center">A Case Study content type for Plone</h1>

<div align="center">

[![PyPI](https://img.shields.io/pypi/v/collective.casestudy)](https://pypi.org/project/collective.casestudy/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/collective.casestudy)](https://pypi.org/project/collective.casestudy/)
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/collective.casestudy)](https://pypi.org/project/collective.casestudy/)
[![PyPI - License](https://img.shields.io/pypi/l/collective.casestudy)](https://pypi.org/project/collective.casestudy/)
[![PyPI - Status](https://img.shields.io/pypi/status/collective.casestudy)](https://pypi.org/project/collective.casestudy/)


[![PyPI - Plone Versions](https://img.shields.io/pypi/frameworkversions/plone/collective.casestudy)](https://pypi.org/project/collective.casestudy/)

[![Code analysis checks](https://github.com/collective/collective.casestudy/actions/workflows/code-analysis.yml/badge.svg)](https://github.com/collective/collective.casestudy/actions/workflows/code-analysis.yml)
[![Tests](https://github.com/collective/collective.casestudy/actions/workflows/tests.yaml/badge.svg)](https://github.com/collective/collective.casestudy/actions/workflows/tests.yaml)
![Code Style](https://img.shields.io/badge/Code%20Style-Black-000000)

[![GitHub contributors](https://img.shields.io/github/contributors/collective/collective.casestudy)](https://github.com/collective/collective.casestudy)
[![GitHub Repo stars](https://img.shields.io/github/stars/collective/collective.casestudy?style=social)](https://github.com/collective/collective.casestudy)

</div>

## Features

`collective.casestudy` provides two new content types to be used in Plone sites, Case Study and Provider.

### Case Study

A case study of a Plone deployment, which has attributes to track the Plone version used, the industry, and the type of usage of Plone.

### Provider

A company providing Plone services and solutions.

## See it in action

**collective.casestudy** is being used in the following sites:

* [Plone.org](https://plone.org)
* [Plone Brasil](https://plone.org.br)

## Documentation

This package supports Plone sites using Volto, but each project should provide its view for this content type.


### Installation

Add **collective.casestudy** to the Plone installation using `pip`:

```bash
pip install collective.casestudy
```
or add it as a dependency on your package's `setup.py`

```python
    install_requires = [
        "collective.casestudy",
        "Plone",
        "plone.restapi",
        "setuptools",
    ],
```

Start Plone and activate the plugin in the addons control-panel.


## Source Code and Contributions

We welcome contributions to `collective.casestudy`.
You can create an issue in the issue tracker, or contact a maintainer.

- [Issue Tracker](https://github.com/collective/collective.casestudy/issues)
- [Source Code](https://github.com/collective/collective.casestudy/)



### Development

You need a working Python environment version 3.7 or later.

Then install the dependencies and a development instance using:

```bash
make build
```

By default, we use the latest Plone version in the 6.x series.

## License

The project is licensed under GPLv2.


# Changelog

## 1.0.0a3 (2023-06-01)

- Add Provider content type #2 [ericof]

- Add Providers behavior [ericof]

- Add catalog indexes for providers, country, services [ericof]

- Update pt_BR translation [ericof]


## 1.0.0a2 (2023-05-15)

- Added Spanish translation [macagua]

- Use `pytest-plone` for testing.
  [ericof]


## 1.0.0a1 (2022-12-06)

- Initial release. [ericof]


