Skip to content

Commit f9d5547

Browse files
authored
Merge pull request #11 from TaskBeacon/codex/update-installation-requirements
Update installation instructions
2 parents f183259 + 22336c1 commit f9d5547

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

docs/tutorials/getting_started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Ensure you have PsychoPy installed:
1010

1111
pip install psychopy
1212

13-
Then install psyflow (replace with actual package name if on PyPI):
13+
Then install psyflow from PyPI:
1414

15-
pip install psyflow
15+
pip install psyflow==0.1.0
1616

1717
Or if you’re working from source:
1818

19-
git clone https://github.com/your-org/psyflow.git
19+
git clone https://github.com/TaskBeacon/psyflow.git
2020
cd psyflow
2121
pip install -e .
2222

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,12 @@ dependencies = [
1818
"pyyaml",
1919
"pyserial",
2020
"edge-tts",
21+
"requests",
22+
"tiktoken",
23+
"openai",
24+
"google-generativeai",
2125
]
2226
dynamic = ["entry-points"]
2327

2428
[project.scripts]
25-
psyflow-init = "psyflow.cli:climain"
29+
psyflow-init = "psyflow.cli:climain"

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ def read_version() -> str:
2626
"pyyaml", # for YAML configuration parsing
2727
"pyserial", # for serial port communication
2828
"edge-tts", # for text-to-speech support
29+
"requests", # for HTTP requests
30+
"tiktoken", # for token counting
31+
"openai", # OpenAI API client
32+
"google-generativeai", # Google GenAI SDK
2933
],
3034
entry_points={
3135
"console_scripts": [

0 commit comments

Comments
 (0)