forked from Emerge-Lab/gpudrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (30 loc) · 916 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
[build-system]
requires = ["poetry-core"]
build-backend = "madrona-py-build"
backend-path = ["external/madrona/py"]
[project]
name = "gpudrive"
version = "0.0.1"
[tool.madrona.packages.gpudrive]
ext-only = true
ext-out-dir = "build"
# This module includes the PPO implementation for the training demo
[tool.madrona.packages.gpudrive_learn]
path = "train_src/gpudrive_learn"
[tool.poetry.build]
script = "build.py"
[tool.poetry.dependencies]
python = "^3.11"
torch = "^2.2.1"
numpy = "^1.26.4"
pytest = "^8.2.1"
[tool.poetry]
name = "gpudrive"
version = "0.1.0"
description = ""
authors = ["Saman Kazemkheni <[email protected]>", "Aarav Pandya <[email protected]", "Daphne Cornelisse <[email protected]>", "Eugene Vinitsky <[email protected]>"]
readme = "README.md"
packages = [
{include = "gpudrive.cpython-31*-*.so", from = "build", to = "gpudrive"},
{include = "pygpudrive"}
]