-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (27 loc) · 875 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
[tool.poetry]
name = "ProxTorch"
version = "0.0.0"
description = "ProxTorch is a PyTorch library for proximal operators."
authors = ["jameschapman <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jameschapman19/proxtorch"
keywords = ["proximal", "optimisation", "pytorch", "proximal operators"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0.0"
torch = [
{ version = "^2.0.1", platform = "darwin" },
{ version = "^2.0.1", platform = "linux", source = "torch" },
{ version = "^2.0.1", platform = "win32", source = "torch" }, ]
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
codecov = "*"
pytest-cov = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"