Metadata-Version: 2.1
Name: django-crypto-extensions
Version: 0.0.1
Summary: Extensions for Django in terms of Cryptography.
Home-page: https://github.com/DjangoCrypto/django-crypto-extensions
Author: DjangoCrypto
Author-email: kamil1marczak@gmail.com
License: Apache-2.0
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

DJANGO-CRYPTO-EXTENSIONS
================

CONTRIBUTION
=================

**TESTS**

- Make sure that you add the test for contributed field to test/test_fields.py and run with command before sending a
  pull request:

```bash
$ pip install tox  # if not already installed
$ tox
```

Or, if you prefer using Docker (recommended):

```bash
docker build -t django_crypto_extensions .
docker run -v $(pwd):/app -it django_crypto_extensions /bin/bash
tox
```


