-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (50 loc) · 1.69 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
47
48
49
50
51
52
53
54
[tool.poetry]
name = "floxs"
version = "0.1.1"
description = "Multi-agent RL flock and swarm environments implemented in JAX"
authors = ["zombie-einstein <zombie-einstein@proton.me>"]
readme = "README.md"
packages = [{include = "floxs", from = "src"}]
repository = "https://github.com/zombie-einstein/floxs"
homepage = "https://zombie-einstein.github.io/floxs"
documentation = "https://zombie-einstein.github.io/floxs"
license = "MIT"
keywords = [
"simulation",
"reinforcement-learning",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"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,<3.12"
jax = "^0.4.4"
chex = "^0.1.6"
esquilax = ">=2.0.0"
jumanji = "^1.1.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21.0"
taskipy = "^1.10.3"
pytest = "^7.2.1"
sphinx = "8.1"
piccolo-theme = "^0.24.0"
sphinx-autoapi = "^3.6.0"
[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"}
pre-commit = "task test && task lint && task docs"