diff --git a/README.md b/README.md index 59920a8..d362172 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Gamayun +# semeion ![alt text](resources/title_image.png) @@ -46,7 +46,7 @@ This project uses [uv](https://github.com/astral-sh/uv) for fast dependency mana ```bash git clone - 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 diff --git a/pyproject.toml b/pyproject.toml index 1b232c6..4545874 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/requirements.txt b/requirements.txt index 8d12b30..28c3c93 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/src/gamayun/__init__.py b/src/gamayun/__init__.py index 72edf73..919637e 100644 --- a/src/gamayun/__init__.py +++ b/src/gamayun/__init__.py @@ -1,4 +1,4 @@ -"""Gamayun semantic post-mortem forensics""" +"""semeion semantic post-mortem forensics""" __version__ = "0.0.0" diff --git a/src/gamayun/ingestion_engines/browserSqlite/__init__.py b/src/gamayun/ingestion_engines/browserSqlite/__init__.py index 73dc3c8..001a0ac 100644 --- a/src/gamayun/ingestion_engines/browserSqlite/__init__.py +++ b/src/gamayun/ingestion_engines/browserSqlite/__init__.py @@ -1,4 +1,4 @@ -# TODO: implement browser SQlite database converter -> gamayun object +# TODO: implement browser SQlite database converter -> semeion object # adapt browser2timesketch.py __all__ = [] \ No newline at end of file diff --git a/src/gamayun/ingestion_engines/forensicImage/__init__.py b/src/gamayun/ingestion_engines/forensicImage/__init__.py index 4671b04..9e08fd8 100644 --- a/src/gamayun/ingestion_engines/forensicImage/__init__.py +++ b/src/gamayun/ingestion_engines/forensicImage/__init__.py @@ -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__ = [] \ No newline at end of file