-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.17 KB
/
pyproject.toml
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
[tool.poetry]
name = "pcx"
version = "0.6.2.post3"
packages = [{ include = "pcx" }]
description = "PCX is a Python JAX-based library designed to develop highly configurable predictive coding networks."
authors = ["Luca Pinchetti <luca.pinchetti@cs.ox.ac.uk>"]
repository = "https://github.com/liukidar/pcx"
documentation = "https://pcx.readthedocs.io/en/latest/"
license = "Apache License 2.0"
readme = "README.md"
keywords = ["predictive coding", "machine learning", "neuroscience"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.11"
equinox = "^0.11.7"
optax = "^0.2.3"
jax = "^0.4.33"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"