-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.07 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
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "active-inference"
version = "0.1.0"
description = "C. elegans active inference sensorimotor simulation using PAULA neurons"
# MuJoCo PyPI wheels are cp311–cp313 only; 3.14 forces an sdist build that needs MUJOCO_PATH.
requires-python = ">=3.11,<3.14"
dependencies = [
"numpy>=1.26",
"mujoco>=3.2",
"loguru>=0.7",
"networkx>=3.3",
"pandas>=2.2",
"scipy>=1.13",
"matplotlib>=3.9",
"tqdm>=4.66",
# OpenWorm ConnectomeToolbox (cect) — installed from GitHub
"cect @ git+https://github.com/openworm/ConnectomeToolbox.git",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ipython>=8.0",
]
trace = [
"opentelemetry-api>=1.27",
"opentelemetry-sdk>=1.27",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["simulations"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.uv]
# Require Python 3.11+ for the virtual environment
required-version = ">=0.5"