From 292d2e260253db48f790bc02b3ebf7a139873161 Mon Sep 17 00:00:00 2001 From: frgmt Date: Mon, 6 Jan 2025 11:18:09 +0900 Subject: [PATCH] Chore --- .gitignore | 10 ++++++---- README.md | 3 ++- setup.py | 8 ++++---- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 21ed6a2..f648e69 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ -*.pyc -dist/ -build/ *.egg-info/ +*.pyc +build/ +dist/ .idea -.pypirc \ No newline at end of file +.pypirc +.ruff_cache +.venv \ No newline at end of file diff --git a/README.md b/README.md index 24c0dc0..dfd9e44 100644 --- a/README.md +++ b/README.md @@ -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:| diff --git a/setup.py b/setup.py index f1f2ee0..3ee0343 100644 --- a/setup.py +++ b/setup.py @@ -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",