Skip to content

Commit

Permalink
Minor changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
stasdavydov committed Jul 14, 2024
1 parent 22cb48c commit 0a72944
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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",
Expand All @@ -37,6 +39,7 @@
include_package_data=False,
install_requires=[
f'filelock >= {FILELOCK_VERSION}',
f'msgspec >= {MSGSPEC_VERSION}',
],
extras_require={
'test': [
Expand Down

0 comments on commit 0a72944

Please sign in to comment.