-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 895 Bytes
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
[project]
name = "IsaacGymMultiAgent"
version = "0.0.1"
description = "Supercharged Isaac Gym environments with multi-agent and multi-algorithm support"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["IsaacGym", "Reinforcement Learning"]
authors = [
{name = "Yunfeng Lin", email = "linyunfeng@sjtu.edu.cn" }
]
maintainers = [
{name = "Yunfeng Lin", email = "linyunfeng@sjtu.edu.cn" }
]
dependencies = [
"hydra-core",
]
[project.optional-dependencies]
dev = ["check-manifest"]
test = ["coverage"]
[project.urls]
"Homepage" = "https://github.com/CreeperLin/IsaacGymMultiAgents"
"Bug Tracker" = "https://github.com/CreeperLin/IsaacGymMultiAgents/issues"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["igma*"]
[tool.yapf]
based_on_style = "google"
column_limit = 120