-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.07 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 = "jax-rl"
version = "0.1.0"
description = "JAX implementations of core Deep RL algorithms"
authors = ["Henry Prior <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
dm-control = "0.0.403778684"
dm-haiku = "git+https://github.com/deepmind/dm-haiku"
flax = "^0.2.2"
jax = "^0.2.21"
jaxlib = "^0.1.57"
tensorflow = "^2.6.0"
tensorflow_estimator = "^2.6.0"
line_profiler = "^3.1.0"
gym = "^0.23.1"
mujoco-py = "^2.1.2"
[tool.poetry.dev-dependencies]
pytest = "^5.4.3"
responses = "^0.10.15"
coverage = {extras = ["toml"], version = "^5.2"}
safety = "^1.9.0"
mypy = "^0.782"
xdoctest = "^0.13.0"
pre-commit = "^2.6.0"
flake8 = "^3.8.3"
black = "^19.10b0"
flake8-bandit = "^2.1.2"
flake8-bugbear = "^20.1.4"
flake8-docstrings = "^1.5.0"
flake8-rst-docstrings = "^0.0.13"
pep8-naming = "^0.11.1"
darglint = "^1.5.1"
reorder-python-imports = "^2.3.1"
pre-commit-hooks = "^3.1.0"
nox = "^2020.5.24"
pytest-cov = "^2.10.0"
testfixtures = "^6.14.1"
pytest-subprocess = "^0.1.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"