-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 886 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
[tool.poetry]
name = "lsnms"
version = "0.4.5"
description = "Large Scale Non Maximum Suppression"
authors = ["Rémy Dubois <remydubois14@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/remydubois/lsnms"
keywords = ["NMS", "Non Maximum Suppression", "Histology image", "Satellite images", "Object detection"]
classifiers=["Programming Language :: Python :: 3", "Topic :: Scientific/Engineering"]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
numba = "^0.63.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-benchmark = {extras = ["histogram"], version = "^4.0.0"}
torch = "^2.9.1"
torchvision = "^0.24.1"
pillow = "^12.1.0"
pre-commit = "^4.5.1"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools>=30.3.0,<50",]
build-backend = "poetry.core.masonry.api"