diff --git a/backend/__pycache__/main.cpython-311.pyc b/backend/__pycache__/main.cpython-311.pyc index ca2ea05..469671d 100644 Binary files a/backend/__pycache__/main.cpython-311.pyc and b/backend/__pycache__/main.cpython-311.pyc differ diff --git a/backend/main.py b/backend/main.py index d7867f7..192c678 100644 --- a/backend/main.py +++ b/backend/main.py @@ -1,4 +1,4 @@ -"""Main FastAPI application for Gentle Momentum Reader.""" +"""Main FastAPI application for Slow Reader.""" import asyncio import json @@ -26,7 +26,7 @@ try: except LookupError: nltk.download("punkt_tab") -app = FastAPI(title="Gentle Momentum Reader") +app = FastAPI(title="Slow Reader") app.add_middleware( CORSMiddleware, diff --git a/frontend/package.json b/frontend/package.json index 8f5d631..0f2e09d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,5 +1,5 @@ { - "name": "gentle-momentum-reader-frontend", + "name": "slow-reader-frontend", "version": "0.1.0", "private": true, "scripts": { diff --git a/pyproject.toml b/pyproject.toml index 483b221..dd8aabd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [project] -name = "gentle-momentum-reader" +name = "slow-reader" version = "0.1.0" description = "A web-based reading tool that creates meaningful friction" -authors = [{name = "Developer", email = "dev@example.com"}] +authors = [{name = "Gal", email = "mail@velouria.dev"}] requires-python = ">=3.11" dependencies = [ "fastapi>=0.104.0", @@ -21,7 +21,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] -packages = ["src/gentle_momentum_reader"] +packages = ["src/slow_reader"] [tool.ruff] line-length = 88 diff --git a/src/gentle_momentum_reader/__init__.py b/src/slow_reader/__init__.py similarity index 100% rename from src/gentle_momentum_reader/__init__.py rename to src/slow_reader/__init__.py