mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
Chore
This commit is contained in:
parent
b14cb14938
commit
292d2e2602
3 changed files with 12 additions and 9 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
|
@ -1,6 +1,8 @@
|
||||||
*.pyc
|
|
||||||
dist/
|
|
||||||
build/
|
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
|
*.pyc
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
.idea
|
.idea
|
||||||
.pypirc
|
.pypirc
|
||||||
|
.ruff_cache
|
||||||
|
.venv
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
[](https://travis-ci.com/jazzband/django-fernet-encrypted-fields)
|
|
||||||
[](http://badge.fury.io/py/django-fernet-encrypted-fields)
|
[](http://badge.fury.io/py/django-fernet-encrypted-fields)
|
||||||
[](https://jazzband.co/)
|
[](https://jazzband.co/)
|
||||||
|
|
||||||
|
|
@ -64,3 +63,5 @@ Currently build in and unit-tested fields. They have the same APIs as their non-
|
||||||
| `4.0` |:heavy_check_mark:|
|
| `4.0` |:heavy_check_mark:|
|
||||||
| `4.1` |:heavy_check_mark:|
|
| `4.1` |:heavy_check_mark:|
|
||||||
| `4.2` |:heavy_check_mark:|
|
| `4.2` |:heavy_check_mark:|
|
||||||
|
| `5.0` |:heavy_check_mark:|
|
||||||
|
| `5.1` |:heavy_check_mark:|
|
||||||
|
|
|
||||||
8
setup.py
8
setup.py
|
|
@ -6,12 +6,12 @@ setup(
|
||||||
description=("This is inspired by django-encrypted-fields."),
|
description=("This is inspired by django-encrypted-fields."),
|
||||||
long_description=open("README.md").read(),
|
long_description=open("README.md").read(),
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="http://github.com/frgmt/django-fernet-encrypted-fields/",
|
url="http://github.com/jazzband/django-fernet-encrypted-fields/",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
author="fragment.co.jp",
|
author="jazzband",
|
||||||
author_email="info@fragment.co.jp",
|
author_email="n.anahara@fragment.co.jp",
|
||||||
packages=["encrypted_fields"],
|
packages=["encrypted_fields"],
|
||||||
version="0.1.3",
|
version="0.2.0",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Django>=3.2",
|
"Django>=3.2",
|
||||||
"cryptography>=35.0.0",
|
"cryptography>=35.0.0",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue