rename application to semeion
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Gamayun
|
||||
# semeion
|
||||
|
||||

|
||||
|
||||
@@ -46,7 +46,7 @@ This project uses [uv](https://github.com/astral-sh/uv) for fast dependency mana
|
||||
|
||||
```bash
|
||||
git clone <your-repo-url>
|
||||
cd gamayun
|
||||
cd semeion
|
||||
```
|
||||
|
||||
2. **Create a virtual environment**
|
||||
@@ -71,7 +71,7 @@ This project uses [uv](https://github.com/astral-sh/uv) for fast dependency mana
|
||||
```
|
||||
|
||||
4. **Install dependencies**
|
||||
This command installs locked dependencies and links the local `gamayun` package in editable mode.
|
||||
This command installs locked dependencies and links the local `semeion` package in editable mode.
|
||||
|
||||
```bash
|
||||
uv pip install -r requirements.txt -e .
|
||||
@@ -82,7 +82,7 @@ This project uses [uv](https://github.com/astral-sh/uv) for fast dependency mana
|
||||
You can execute the module directly:
|
||||
|
||||
```bash
|
||||
python src/gamayun/main.py
|
||||
python src/semeion/main.py
|
||||
```
|
||||
|
||||
### Running Tests
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[project]
|
||||
name = "gamayun"
|
||||
name = "semeion"
|
||||
version = "0.0.0"
|
||||
description = "Scalable vector search engine with focus on post-mortem forensics"
|
||||
authors = [
|
||||
@@ -23,7 +23,7 @@ requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src/gamayun"]
|
||||
packages = ["src/semeion"]
|
||||
|
||||
[project.scripts]
|
||||
gamayun-cli = "gamayun.main:main"
|
||||
semeion = "semeion.main:main"
|
||||
|
||||
@@ -45,7 +45,7 @@ pydantic-core==2.41.5
|
||||
pygments==2.19.2
|
||||
# via pytest
|
||||
pyside6==6.8.3
|
||||
# via gamayun (pyproject.toml)
|
||||
# via semeion (pyproject.toml)
|
||||
pyside6-addons==6.8.3
|
||||
# via pyside6
|
||||
pyside6-essentials==6.8.3
|
||||
@@ -53,9 +53,9 @@ pyside6-essentials==6.8.3
|
||||
# pyside6
|
||||
# pyside6-addons
|
||||
pytest==9.0.1
|
||||
# via gamayun (pyproject.toml)
|
||||
# via semeion (pyproject.toml)
|
||||
qdrant-client==1.16.1
|
||||
# via gamayun (pyproject.toml)
|
||||
# via semeion (pyproject.toml)
|
||||
shiboken6==6.8.3
|
||||
# via
|
||||
# pyside6
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"""Gamayun semantic post-mortem forensics"""
|
||||
"""semeion semantic post-mortem forensics"""
|
||||
|
||||
__version__ = "0.0.0"
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# TODO: implement browser SQlite database converter -> gamayun object
|
||||
# TODO: implement browser SQlite database converter -> semeion object
|
||||
# adapt browser2timesketch.py
|
||||
|
||||
__all__ = []
|
||||
@@ -1,3 +1,3 @@
|
||||
# TODO: use pytsk to import forensic images and convert to gamayun objects
|
||||
# TODO: use pytsk to import forensic images and convert to semeion objects
|
||||
|
||||
__all__ = []
|
||||
Reference in New Issue
Block a user