-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (33 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
40 lines (33 loc) · 876 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
[project]
name = "engression-pytorch"
version = "0.1.3"
description = "The engression loss (energy score) proposed by Shen et al. for distributional regression with a few convenient wrappers, in Pytorch."
authors = [
{ name = "Emilio Cantu", email = "ecantuc@umich.edu" }
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"einops>=0.8.1",
"torch>=2.7.0",
]
[project.urls]
Homepage = "https://pypi.org/project/engression-pytorch/"
Repository = "https://github.com/emiliocantuc/engression-pytorch"
[project.optional-dependencies]
examples = [
"matplotlib",
]
test = [
"pytest",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
pythonpath = ["."]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true