pyproject.toml 439 Bytes
Newer Older
Hector Piteau's avatar
Hector Piteau committed
1
2
3
4
5
6
7
8
9
10
11
[build-system]
requires = ["setuptools", "torch>=2.6.0"]
build-backend = "setuptools.build_meta"

[project]
name = "lietorch"
version = "0.2" 
description = "Lie Groups for PyTorch"
authors = [
    { name="teedrz", email="zachteed@gmail.com" }
]
Hector Piteau's avatar
Hector Piteau committed
12
13
version = "0.2"
description = "Lie Groups for PyTorch"
Hector Piteau's avatar
Hector Piteau committed
14
15
16
17
18
19
20
license = { text = "BSD-3-Clause" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
    "torch>=2.6.0",
    "numpy<2",
]