-
Notifications
You must be signed in to change notification settings - Fork 170
/
pyproject.toml
40 lines (37 loc) · 1011 Bytes
/
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "Pearl"
version = "0.1.0"
description = "A Production-Ready Reinforcement Learning AI Agent Library"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
"gym",
"gymnasium[mujoco,atari,accept-rom-license]",
"numpy",
"matplotlib",
"pandas",
"parameterized",
"requests",
"mujoco",
"torch",
"torchvision",
"torchaudio",
]
[project.urls]
homepage = "http://pearlagent.github.io"
# documentation = "https://example.com/my_package/docs"
repository = "http://github.com/facebookresearch/Pearl"
[tool.setuptools.packages.find]
where = ["."]
include = ["pearl*"]