-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
38 lines (35 loc) · 950 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
32
33
34
35
36
37
38
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "unet"
version = "0.8.1"
description = "PyTorch implementation of 1D, 2D and 3D U-Net."
authors = [{ name = "Fernando Perez-Garcia", email = "[email protected]" }]
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
]
dependencies = ["torch"]
[project.urls]
Homepage = "https://github.com/fepegar/unet"
Source = "https://github.com/fepegar/unet"
"Issue tracker" = "https://github.com/fepegar/unet/issues"
[dependency-groups]
dev = ["bump-my-version", "pytest", "pytest-sugar", "ruff", "tox-uv"]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# isort
"I",
]