-
Notifications
You must be signed in to change notification settings - Fork 441
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.01 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
[project]
name = "pufferlib"
version = "4.0.0"
description = "Fast and sane reinforcement learning"
requires-python = ">=3.10"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [{ name = "Joseph Suarez", email = "jsuarez@puffer.ai" }]
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"setuptools",
"numpy",
"torch>=2.9",
"rich",
"rich_argparse",
"gpytorch",
"scikit-learn",
"wandb",
"pybind11",
]
[project.scripts]
puffer = "pufferlib.pufferl:main"
[project.urls]
Homepage = "https://puffer.ai"
[tool.setuptools.packages.find]
where = ["."]
include = ["pufferlib*"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"