Metadata-Version: 2.1
Name: django-sb-codefield
Version: 0.2.0
Summary: Use codemirror2 widget directly in Django models, forms and admin.
Home-page: https://gitlab.com/softbutterfly/open-source/django-sb-codefield
License: MIT
Keywords: Softbutterfly,Django,Migrations
Author: SoftButterfly Development Team
Author-email: dev@softbutterfly.io
Requires-Python: >=3.8.1,<4.0.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: Django (<5.0.0)
Requires-Dist: django-codemirror2 (<1.0.0)
Project-URL: Bug Tracker, https://github.com/softbutterfly/django-sb-codefield/issues
Project-URL: Documentation, https://gitlab.com/softbutterfly/open-source/django-sb-codefield/-/wikis
Project-URL: Download, https://github.com/softbutterfly/django-sb-codefield/archive/v0.2.0.tar.gz
Project-URL: Repository, https://gitlab.com/softbutterfly/open-source/django-sb-codefield
Description-Content-Type: text/markdown

![Community-Project](https://gitlab.com/softbutterfly/open-source/open-source-office/-/raw/master/banners/softbutterfly-open-source--banner--community-project.png)

![PyPI - Supported versions](https://img.shields.io/pypi/pyversions/django-sb-codefield)
![PyPI - Package version](https://img.shields.io/pypi/v/django-sb-codefield)
![PyPI - Downloads](https://img.shields.io/pypi/dm/django-sb-codefield)
![PyPI - MIT License](https://img.shields.io/pypi/l/django-sb-codefield)

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/fe5644bd3a114473879a304321a68f3e)](https://app.codacy.com/gl/softbutterfly/django-sb-codefield/dashboard?utm_source=gl&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)

# Django CodeField

Use codemirror2 widget directly in Django models, forms and admin.

## Requirements

- Python 3.8.1 or higher but lower than 4.0.0
- Django lower than 5.0.0
- django-codemirror2 lower than 1.0.0

## Install

```bash
pip install django-sb-codefield
```

## Usage

Add `codemirror2` and `django_sb_codefield` to your `INSTALLED_APPS` settings

```
INSTALLED_APPS = [
  # ...
  "codemirror2",
  "django_sb_codefield",
]
```

## Docs

- [Ejemplos](https://gitlab.com/softbutterfly/open-source/django-sb-codefield/-/wikis)
- [Wiki](https://gitlab.com/softbutterfly/open-source/django-sb-codefield/-/wikis)

## Changelog

All changes to versions of this library are listed in the [change history](CHANGELOG.md).

## Development

Check out our [contribution guide](CONTRIBUTING.md).

## Contributors

See the list of contributors [here](https://gitlab.com/softbutterfly/open-source/django-sb-codefield/-/graphs/develop).

