-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 747 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 747 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
30
31
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "rlgym-learn"
description = "A generic framework for using learning algorithms with effecient parallelization of RLGym environments and an ergonomic API"
requires-python = ">=3.8,<3.14"
authors = [
{ name = "Jonathan Keegan" }
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
dynamic = ["license", "readme", "version"]
dependencies = [
"rlgym>=2.0.0",
"pydantic>=2.8.2",
"typing_extensions>4.6",
]
[project.optional-dependencies]
rl = [
"rlgym[rl]>=2.0.0",
"numpy>1.21"
]
tensor = [ "torch>1.13" ]
[tool.maturin]
features = ["pyo3/extension-module", "rl"]