2020-05-25 10:26:57 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "mujoco-maze"
|
2021-06-22 11:20:31 +02:00
|
|
|
version = "0.2.0"
|
2020-05-25 10:26:57 +02:00
|
|
|
description = "Simple maze environments using mujoco-py"
|
|
|
|
license = "Apache-2.0"
|
|
|
|
authors = ["Yuji Kanagawa <yuji.kngw.80s.revive@gmail.com>"]
|
|
|
|
readme = "README.md" # Markdown files are supported
|
|
|
|
|
|
|
|
repository = "https://github.com/kngwyu/mujoco-maze"
|
|
|
|
homepage = "https://github.com/kngwyu/mujoco-maze"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-06-03 14:31:44 +02:00
|
|
|
python = ">=3.6" # Compatible python versions must be declared here
|
2020-05-29 10:29:14 +02:00
|
|
|
gym = ">=0.16"
|
|
|
|
mujoco-py = ">=1.5"
|
2020-05-25 10:26:57 +02:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2021-06-03 13:29:54 +02:00
|
|
|
pytest = "^6.2"
|
2020-05-25 10:26:57 +02:00
|
|
|
|
2020-06-03 16:41:14 +02:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
test = "pytest:main"
|
2020-05-25 10:26:57 +02:00
|
|
|
|
2020-05-21 12:05:06 +02:00
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|
|
|
|
target-version = ['py36']
|
|
|
|
include = '\.pyi?$'
|
|
|
|
exclude = '''
|
|
|
|
|
|
|
|
(
|
|
|
|
/(
|
|
|
|
\.eggs
|
|
|
|
| \.git
|
|
|
|
| \.mypy_cache
|
|
|
|
| _build
|
|
|
|
| buck-out
|
|
|
|
| build
|
|
|
|
| dist
|
|
|
|
)/
|
|
|
|
)
|
|
|
|
'''
|