From 0a72944f7c671ca53f19f7adb6a1e41554865b15 Mon Sep 17 00:00:00 2001 From: Stas Davydov Date: Mon, 15 Jul 2024 02:39:13 +0800 Subject: [PATCH] Minor changes. --- README.md | 4 ++++ setup.py | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e7fdc9..f39812b 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ Simple fast JSON file storage for Python dataclasses and Pydantic models, thread and multiprocess safe. +[![PyPI](https://img.shields.io/pypi/v/pysdato)](https://pypi.org/project/pysdato/) +[![Supported Python +versions](https://img.shields.io/pypi/pyversions/pysdato.svg)](https://pypi.org/project/pysdato/) + ---- It's standard to use SQL or NoSQL database servers as data backend, but sometimes it's more convenient to have data persisted as file(s) locally on backend application side. If you still diff --git a/setup.py b/setup.py index 7780844..5cc68cf 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ MSGSPEC_VERSION = '0.18.6' setup(name='pysdato', - version='0.0.9', + version='0.0.10', python_requires='>=3.9', description='Simple JSON file storage for Python dataclasses, msgspec structs and pydantic models, thread and ' 'multiprocess safe', @@ -29,6 +29,8 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Database :: Database Engines/Servers", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", @@ -37,6 +39,7 @@ include_package_data=False, install_requires=[ f'filelock >= {FILELOCK_VERSION}', + f'msgspec >= {MSGSPEC_VERSION}', ], extras_require={ 'test': [