-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (53 loc) · 1.29 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "torch_phasecong"
version = "0.0.1"
description = "Phase-congruency computation in PyTorch"
authors = [
{ name = "Simon Bertrand", email = "[email protected]" },
]
maintainers = [
{ name = "Simon Bertrand", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"phase-congruency",
"pc",
"pytorch",
"pt",
"batched",
"tensors",
]
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"torch>=2.2.1",
"numpy==1.26.4",
]
[project.optional-dependencies]
tests = ["flake8==7.0.0", "isort==5.13.2", "black==24.1.1"]
[project.urls]
Repository = "https://github.com/Simon-Bertrand/2DPhaseCongruency-PyTorch"
[tool.setuptools.packages.find]
include = ["torch_phasecong.*"]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 100
[tool.pylint."messages control"]
ignore = ["setup.py", "__init__.py"]
disable = "all"
enable = [
"empty-docstring",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]