Skip to content

Commit

Permalink
Merge branch 'release/v0.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
klich3 committed Jan 2, 2024
2 parents 1c9907b + bae714b commit 4ac0297
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ keywords:
- file
- rocket
license: MIT
version: 0.0.2
version: 0.0.3
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ include CITATION.cff
include README.md
include *.toml
recursive-include src *.py
recursive-include src/Rocketstore *.py
recursive-include src/Rocketstore/utils *.py
recursive-include src/RocketStore *.py
recursive-include src/RocketStore/utils *.py
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Compare Rocket-Store, SQL and file system terms:
To use Rocketstore, you must first import the library:

```python
from Rocketstore import Rocketstore, _FORMAT_JSON
import Rocketstore, _FORMAT_JSON
```

### Post
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "Rocket-Store"
version = "0.0.2"
version = "0.0.3"
authors = [
{ name="Anton Sychev", email="[email protected]" },
]
Expand Down
4 changes: 2 additions & 2 deletions src/Rocketstore/Rocketstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Author: <Anton Sychev> (anton at sychev dot xyz)
main.py (c) 2023
Created: 2023-10-31 21:03:32
Desc: Rocket Store (Python) - main module code
Desc: Rocket Store (Python) - main module code ported from Node.js version (https://github.com/paragi/rocket-store-node)
License:
* MIT: (c) Paragi 2017, Simon Riget.
Terminology:
Expand Down Expand Up @@ -57,7 +57,7 @@
# TODO: checker last modified file time if exist lockfile and is to much longuer (to unlock it)


class Rocketstore:
class RocketStore:

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

Expand Down
12 changes: 12 additions & 0 deletions src/Rocketstore/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""
█▀ █▄█ █▀▀ █░█ █▀▀ █░█
▄█ ░█░ █▄▄ █▀█ ██▄ ▀▄▀
Author: <Anton Sychev> (anton at sychev dot xyz)
__init__.py (c) 2024
Created: 2024-01-02 17:37:05
Desc: Inilization of RocketStore
Docs: documentation
"""

from .RocketStore import RocketStore
18 changes: 18 additions & 0 deletions src/Rocketstore/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"""
█▀ █▄█ █▀▀ █░█ █▀▀ █░█
▄█ ░█░ █▄▄ █▀█ ██▄ ▀▄▀
Author: <Anton Sychev> (anton at sychev dot xyz)
__version__.py (c) 2024
Created: 2024-01-02 17:25:14
Desc: Versions
"""

__title__ = "RocketStore"
__description__ = "Rocket Store (Python) - Fast and Simple Database"
__url__ = "https://github.com/klich3/rocket-store-python"
__version__ = "0.0.3"
__build__ = 0x000018
__author__ = "Anton Sychev"
__author_email__ = "[email protected]"
__copyright__ = "Copyright Simon Riget"

0 comments on commit 4ac0297

Please sign in to comment.