-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (54 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "esquilax"
version = "2.0.0"
description = "JAX multi-agent simulation and ML toolset"
authors = [
"Zombie-Einstein <[email protected]>"
]
readme = "README.md"
packages = [{include = "esquilax", from = "src"}]
repository = "https://github.com/zombie-einstein/esquilax"
homepage = "https://zombie-einstein.github.io/esquilax"
documentation = "https://zombie-einstein.github.io/esquilax"
license = "MIT"
keywords = [
"agent-based modelling",
"simulation",
"reinforcement-learning",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
"Environment :: GPU",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Artificial Life",
]
[tool.poetry.dependencies]
python = "^3.10"
jax = "^0.4.30"
chex = "^0.1.86"
jax-tqdm = "^0.3.1"
evosax = "^0.1.6"
flax = "^0.8.5"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
taskipy = "^1.13.0"
pytest = "^8.2.2"
sphinx = "^8.0.2"
piccolo-theme = "^0.23.0"
sphinx-autoapi = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.taskipy.tasks]
test = { cmd = "pytest tests", help="Run tests"}
lint = { cmd = "pre-commit run --all-files", help="Code format checks"}
docs = { cmd = "sphinx-build -W -b html docs/source docs/build", help="Build docs"}
doc-tests = { cmd = "sphinx-build -W -b doctest docs/source docs/build", help="Run sphinx doc-tests"}
pre-commit = "task test && task lint && task docs && task doc-tests"