-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
81 lines (75 loc) · 2.37 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = [
"setuptools==80.9.0",
"wheel==0.45.1",
"numpy==2.3.3",
"torch==2.9.0",
"setuptools_scm==8.1.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "pufferlib-core"
version = "3.0.23"
description = "PufferLib core functionality with vectorized environments and reinforcement learning"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [{ name = "Joseph Suarez", email = "jsuarez@openai.com" }]
keywords = ["reinforcement-learning", "machine-learning", "multi-agent", "vectorized-environments"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy",
"gymnasium",
"psutil",
# Pinned to match build-system.requires — the C++ extension (.so) is compiled
# against this exact torch ABI, so a different runtime torch will segfault.
"torch==2.9.0",
"nvidia-ml-py",
"rich",
"rich-argparse",
"setuptools",
"pyro-ppl",
]
[project.urls]
Homepage = "https://github.com/PufferAI/PufferLib"
Documentation = "https://puffer.ai"
Repository = "https://github.com/PufferAI/PufferLib"
Issues = "https://github.com/PufferAI/PufferLib/issues"
[tool.setuptools.packages.find]
where = ["src"]
include = ["pufferlib", "pufferlib_core.egg-info"]
[tool.setuptools_scm]
tag_regex = "^pufferlib-core-v(?P<version>\\d+\\.\\d+\\.\\d+(?:\\.\\d+)?)$"
version_scheme = "no-guess-dev"
local_scheme = "node-and-date"
root = "../.."
fallback_version = "3.0.23"
# Provide a specific git command to be used in order to find the correct versioning tags
git_describe_command = [
"git",
"describe",
"--dirty",
"--tags",
"--long",
"--match",
"pufferlib-core-v*",
]
[tool.setuptools.package-data]
pufferlib = ["*.py", "*.so", "*.pyd"]
[tool.pufferlib]
uv_rebuild_token = 0 # Bump to trigger uv editable reinstall even when source code has not changed