File size: 1,154 Bytes
9860743 | 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 41 42 43 44 45 46 47 48 49 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ffolayer"
dynamic = ['version']
description = "A fully first-order (FFO) layer for differentiable convex optimization"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [{name = "Zihao Zhao"},
{name = "Kai-Chia Mo"},
{name = "Shing-Hei Ho"},
{name = "Brandon Amos"},
{name = "Kai Wang"},
]
dependencies = [
"numpy",
"scipy",
"torch",
"cvxpy",
"diffcp",
"threadpoolctl",
]
keywords = ["first-order", "convex optimization", "differentiable optimization"]
[project.optional-dependencies]
[project.urls]
Homepage = "https://github.com/GT-KOALA/FFOLayer"
Repository = "https://github.com/GT-KOALA/FFOLayer.git"
Documentation = "https://github.com/GT-KOALA/FFOLayer"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/ffolayer"]
[tool.hatch.build.targets.sdist]
include = ["/src", "/tests", "/README.md", "/LICENSE"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.hatch.version]
path = "src/ffolayer/__init__.py" |