-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 772 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 61.0.0"]
[project]
name = "emma"
description = "An agent capabile of optimizing an external model as quickly as possible while still performing well on its given task."
keywords = ["reinforcement", "learning", "exploration", "interest"]
authors = [{ name = "Rishav Bhagat", email = "rishavbhagat.cs@gmail.com" }]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"experiment-lab",
"experiment-lab[rl]",
"experiment-lab[rl-vid]",
"seaborn",
]
[project.urls]
Repository = "https://github.com/rishavb123/EMMA"
[project.optional-dependencies]
all = []
[tool.setuptools.packages.find]
where = ["."]
include = ["emma*"]
namespaces = false