-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (47 loc) · 1.15 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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "disco_rl"
version = "1.0.0"
description = "DiscoRL: Discovering State-of-the-art Reinforcement Learning Algorithms."
readme = "README.md"
requires-python = ">=3.11"
license-files = ["LICENSE"]
authors = [{name = "DiscoRL team", email="disco_rl@google.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
]
keywords = [
"reinforcement learning",
"rl",
"meta learning",
"meta",
"update rule",
"automated discovery",
"automl",
"algorithm discovery",
"data driven research",
]
# pip dependencies of the project
# Installed locally with `pip install -e .`
dependencies = [
"jax",
"distrax",
"optax",
"jmp",
"rlax",
"dm-haiku",
"immutabledict",
"ml_collections",
"matplotlib",
"seaborn",
"pandas",
"tqdm"
]
[project.urls]
repository = "https://github.com/google-deepmind/disco_rl"
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)