-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (19 loc) · 796 Bytes
/
Copy pathpyproject.toml
File metadata and controls
23 lines (19 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[project]
name = "elephant"
version = "0.1.0"
description = "The inter-model temperature. A bank of JEPA dials perceiving a room's vibes — mood, volume, earnestness, cynicism, joke-landing, panic — as a field that shapes every agent in it."
requires-python = ">=3.10"
dependencies = ["numpy"]
[project.optional-dependencies]
learned = ["torch"]
dev = ["pytest", "scipy"]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["elephant*"]
[tool.pytest.ini_options]
# The test suite lives in tests/ (277 tests across 25 files). Keeping
# discovery explicit also keeps stray *-named scripts (e.g. scripts/*_test.py,
# which is a research script, not a pytest module) out of the collection path.
testpaths = ["tests"]