Metadata-Version: 2.1
Name: moose-frank
Version: 9.3.3
Summary: A Python package packed with tools that are commonly used in Moose projects.
Home-page: https://gitlab.com/mediamoose/moose-frank/tree/v9.3.3
Download-URL: https://gitlab.com/mediamoose/moose-frank/repository/v9.3.3/archive.tar.gz
Author: Sven Groot (Moose / Digital Agency)
Author-email: sven@wearemoose.com
License: MIT
Keywords: moose,frank,frankenstein
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
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: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: graphene
Provides-Extra: gcloud
License-File: LICENSE.txt

# Moose Frank

A Python package packed with tools that are commonly used in Moose projects.


## Development

See the [CONTRIBUTING](CONTRIBUTING.md) guide.


## Installation

```console
pip install moose-frank
```


## Local testing

isort

```console
docker-compose run --rm --no-deps python isort [module/path] [options]
```

---

flake8

```console
docker-compose run --rm --no-deps python flake8 [module/path]
```

---

black

```console
docker-compose run --rm --no-deps python black [module/path]
```

---

pytest

```console
docker-compose run --rm --no-deps python coverage run ./runtests.py
```


## Translations

Updating translations

```console
docker-compose run --rm --no-deps manage makemessages -l nl --no-wrap --no-location --no-obsolete
docker-compose run --rm --no-deps manage compilemessages
```
