We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4734335 commit 14a1f53Copy full SHA for 14a1f53
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "json_as_db"
3
-version = "0.0.2b2"
+version = "0.1.0"
4
description = "Using JSON as very lightweight database"
5
readme = "README.md"
6
license = "MIT"
@@ -30,7 +30,7 @@ exclude = [
30
]
31
32
[tool.poetry.dependencies]
33
-python = ">=3.6"
+python = ">=3.7,<4.0"
34
aiofiles = ">=22.1.0"
35
36
[tool.poetry.dev-dependencies]
src/json_as_db/__init__.py
@@ -1,6 +1,8 @@
from .Client import Client
from .Database import Database
+__version__ = '0.1.0'
+
__all__ = [
7
"Client",
8
"Database"
0 commit comments