Skip to content

Commit 4ac0297

Browse files
committed
Merge branch 'release/v0.0.3'
2 parents 1c9907b + bae714b commit 4ac0297

File tree

7 files changed

+37
-7
lines changed

7 files changed

+37
-7
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ keywords:
1717
- file
1818
- rocket
1919
license: MIT
20-
version: 0.0.2
20+
version: 0.0.3

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ include CITATION.cff
33
include README.md
44
include *.toml
55
recursive-include src *.py
6-
recursive-include src/Rocketstore *.py
7-
recursive-include src/Rocketstore/utils *.py
6+
recursive-include src/RocketStore *.py
7+
recursive-include src/RocketStore/utils *.py

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Compare Rocket-Store, SQL and file system terms:
4848
To use Rocketstore, you must first import the library:
4949

5050
```python
51-
from Rocketstore import Rocketstore, _FORMAT_JSON
51+
import Rocketstore, _FORMAT_JSON
5252
```
5353

5454
### Post

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "Rocket-Store"
7-
version = "0.0.2"
7+
version = "0.0.3"
88
authors = [
99
{ name="Anton Sychev", email="[email protected]" },
1010
]

src/Rocketstore/Rocketstore.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Author: <Anton Sychev> (anton at sychev dot xyz)
66
main.py (c) 2023
77
Created: 2023-10-31 21:03:32
8-
Desc: Rocket Store (Python) - main module code
8+
Desc: Rocket Store (Python) - main module code ported from Node.js version (https://github.com/paragi/rocket-store-node)
99
License:
1010
* MIT: (c) Paragi 2017, Simon Riget.
1111
Terminology:
@@ -57,7 +57,7 @@
5757
# TODO: checker last modified file time if exist lockfile and is to much longuer (to unlock it)
5858

5959

60-
class Rocketstore:
60+
class RocketStore:
6161

6262
data_storage_area: str = os.path.join(os.path.sep, "tmp", "rsdb")
6363

src/Rocketstore/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"""
2+
█▀ █▄█ █▀▀ █░█ █▀▀ █░█
3+
▄█ ░█░ █▄▄ █▀█ ██▄ ▀▄▀
4+
5+
Author: <Anton Sychev> (anton at sychev dot xyz)
6+
__init__.py (c) 2024
7+
Created: 2024-01-02 17:37:05
8+
Desc: Inilization of RocketStore
9+
Docs: documentation
10+
"""
11+
12+
from .RocketStore import RocketStore

src/Rocketstore/__version__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
"""
2+
█▀ █▄█ █▀▀ █░█ █▀▀ █░█
3+
▄█ ░█░ █▄▄ █▀█ ██▄ ▀▄▀
4+
5+
Author: <Anton Sychev> (anton at sychev dot xyz)
6+
__version__.py (c) 2024
7+
Created: 2024-01-02 17:25:14
8+
Desc: Versions
9+
"""
10+
11+
__title__ = "RocketStore"
12+
__description__ = "Rocket Store (Python) - Fast and Simple Database"
13+
__url__ = "https://github.com/klich3/rocket-store-python"
14+
__version__ = "0.0.3"
15+
__build__ = 0x000018
16+
__author__ = "Anton Sychev"
17+
__author_email__ = "[email protected]"
18+
__copyright__ = "Copyright Simon Riget"

0 commit comments

Comments
 (0)