File size: 450 Bytes
604e535
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"

[project]
name = "driftwm"
version = "0.1.0"
description = "Passive-drift disentangled latent world model for 2D surface vehicles."
requires-python = ">=3.10"
dependencies = [
  "numpy",
  "torch",
  "PyYAML",
  "Pillow",
]

[tool.setuptools.packages.find]
include = ["driftwm*", "experiments*"]

[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]