This commit is contained in:
frgmt 2025-01-06 11:18:09 +09:00
parent b14cb14938
commit 292d2e2602
3 changed files with 12 additions and 9 deletions

10
.gitignore vendored
View file

@ -1,6 +1,8 @@
*.pyc
dist/
build/
*.egg-info/
*.pyc
build/
dist/
.idea
.pypirc
.pypirc
.ruff_cache
.venv

View file

@ -1,4 +1,3 @@
[![Build Status](https://api.travis-ci.com/jazzband/django-fernet-encrypted-fields.png)](https://travis-ci.com/jazzband/django-fernet-encrypted-fields)
[![Pypi Package](https://badge.fury.io/py/django-fernet-encrypted-fields.png)](http://badge.fury.io/py/django-fernet-encrypted-fields)
[![Jazzband](https://jazzband.co/static/img/badge.svg)](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.1` |:heavy_check_mark:|
| `4.2` |:heavy_check_mark:|
| `5.0` |:heavy_check_mark:|
| `5.1` |:heavy_check_mark:|

View file

@ -6,12 +6,12 @@ setup(
description=("This is inspired by django-encrypted-fields."),
long_description=open("README.md").read(),
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",
author="fragment.co.jp",
author_email="info@fragment.co.jp",
author="jazzband",
author_email="n.anahara@fragment.co.jp",
packages=["encrypted_fields"],
version="0.1.3",
version="0.2.0",
install_requires=[
"Django>=3.2",
"cryptography>=35.0.0",