-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 859 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
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cro"
version = "0.0.1"
description = "Utilities for the Cube Rotation Obelisk project."
readme = "README.md"
license = {text="MIT"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
dependencies = [
"mujoco>=3.1.0",
"numpy>=1.26",
"perseus @ git+https://github.com/pculbertson/perseus.git@ba4b7aac563ff8dd3cc8630d32a6da356eee69f6",
"ruamel.yaml>=0.18.6",
"torch>=2.3.1",
"torchvision>=0.18.1",
]
[options]
dependency_links = [
"https://download.pytorch.org/whl/cu121",
]
[project.optional-dependencies]
dev = [
"pre-commit>=3.7.1",
"ruff>=0.4.9",
]
[tool.hatch.build.targets.wheel]
include = ["cro*"]
[tool.hatch.metadata]
allow-direct-references = true