-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mid-task-deterministic"
version = "1.0.0-rc.3"
description = "Deterministic Monetary Incentive Delay Task - PsychoPy implementation for fMRI (no adaptive staircase)"
readme = "README.md"
requires-python = ">=3.11,<3.12"
authors = [{ name = "Eric Wang" }]
dependencies = [
# Shared experiment harness (screen/frame-timing, run dirs, manifests, CSV
# writers, setup-wizard primitives, instruction pager, keyboard abstraction).
# Published PyPI package; the exact version is pinned in uv.lock for
# reproducible clones and the run manifest also records psyexp_core_version.
# pip/conda resolve it too (production uses conda — see AGENTS.md). For
# co-development, overlay an editable sibling checkout and run with --no-sync
# (any uv sync reverts it — --inexact does NOT help; the core is in the lock):
# uv pip install -e ../psyexp-core
# uv run --no-sync ... # or: export UV_NO_SYNC=1 (see `just core-*`)
"psyexp-core>=0.9.0",
"psychopy>=2026.1",
"scipy>=1.11",
"numpy>=1.26",
"pandas>=2.0",
"rich>=14.3.3",
"questionary>=2.0",
"prompt_toolkit>=3.0",
"mcculw>=1.0.0",
"pyobjc-framework-quartz>=10; sys_platform == 'darwin'",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.scripts]
mid-task-det = "mid_det.__main__:run"
mid-ratings-det = "mid_det.ratings.__main__:run"
[tool.setuptools.packages.find]
where = ["src"]
[tool.uv.extra-build-dependencies]
pyobjc-framework-quartz = ["pkg_resources"]