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
|
```bash
|
||||||
git clone <your-repo-url>
|
git clone <your-repo-url>
|
||||||
cd gamayun
|
cd semeion
|
||||||
```
|
```
|
||||||
|
|
||||||
2. **Create a virtual environment**
|
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**
|
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
|
```bash
|
||||||
uv pip install -r requirements.txt -e .
|
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:
|
You can execute the module directly:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python src/gamayun/main.py
|
python src/semeion/main.py
|
||||||
```
|
```
|
||||||
|
|
||||||
### Running Tests
|
### Running Tests
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "gamayun"
|
name = "semeion"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
description = "Scalable vector search engine with focus on post-mortem forensics"
|
description = "Scalable vector search engine with focus on post-mortem forensics"
|
||||||
authors = [
|
authors = [
|
||||||
@@ -23,7 +23,7 @@ requires = ["hatchling"]
|
|||||||
build-backend = "hatchling.build"
|
build-backend = "hatchling.build"
|
||||||
|
|
||||||
[tool.hatch.build.targets.wheel]
|
[tool.hatch.build.targets.wheel]
|
||||||
packages = ["src/gamayun"]
|
packages = ["src/semeion"]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
gamayun-cli = "gamayun.main:main"
|
semeion = "semeion.main:main"
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ pydantic-core==2.41.5
|
|||||||
pygments==2.19.2
|
pygments==2.19.2
|
||||||
# via pytest
|
# via pytest
|
||||||
pyside6==6.8.3
|
pyside6==6.8.3
|
||||||
# via gamayun (pyproject.toml)
|
# via semeion (pyproject.toml)
|
||||||
pyside6-addons==6.8.3
|
pyside6-addons==6.8.3
|
||||||
# via pyside6
|
# via pyside6
|
||||||
pyside6-essentials==6.8.3
|
pyside6-essentials==6.8.3
|
||||||
@@ -53,9 +53,9 @@ pyside6-essentials==6.8.3
|
|||||||
# pyside6
|
# pyside6
|
||||||
# pyside6-addons
|
# pyside6-addons
|
||||||
pytest==9.0.1
|
pytest==9.0.1
|
||||||
# via gamayun (pyproject.toml)
|
# via semeion (pyproject.toml)
|
||||||
qdrant-client==1.16.1
|
qdrant-client==1.16.1
|
||||||
# via gamayun (pyproject.toml)
|
# via semeion (pyproject.toml)
|
||||||
shiboken6==6.8.3
|
shiboken6==6.8.3
|
||||||
# via
|
# via
|
||||||
# pyside6
|
# pyside6
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
"""Gamayun semantic post-mortem forensics"""
|
"""semeion semantic post-mortem forensics"""
|
||||||
|
|
||||||
__version__ = "0.0.0"
|
__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
|
# adapt browser2timesketch.py
|
||||||
|
|
||||||
__all__ = []
|
__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__ = []
|
__all__ = []
|
||||||
Reference in New Issue
Block a user