-
Notifications
You must be signed in to change notification settings - Fork 80
/
pyproject.toml
73 lines (64 loc) · 1.68 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
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = []
[tool.poetry]
authors = ["Fausto Morales <faustomorales@gmail.com>"]
classifiers = [
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
description = "Keras implementation of ViT (Vision Transformer)"
homepage = "https://github.com/faustomorales/vit-keras"
license = "Apache License 2.0"
name = "vit-keras"
readme = "README.md"
repository = "https://github.com/faustomorales/vit-keras"
# Placeholder for poetry-dynamic-versioning
version = "0.0.0"
# See https://python-poetry.org/docs/versions/ for allowed version specification formats
[tool.poetry.dependencies]
python = ">=3.7, <3.12"
scipy = "*"
validators = "*"
[tool.poetry.dev-dependencies]
black = "*"
mypy = "*"
pytest = "*"
pylint = "*"
opencv-python = "*"
types-requests = "*"
types-pkg-resources = "*"
[tool.poetry.extras]
visualization = [
"matplotlib"
]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.pytest.ini_options]
filterwarnings = [
"ignore:the imp module is deprecated in favour of importlib;:DeprecationWarning"
]
[tool.pylint.main]
extension-pkg-allow-list = [
"cv2",
]
[tool.pylint.messages_control]
disable = [
"line-too-long",
"missing-module-docstring",
"invalid-name",
"attribute-defined-outside-init",
"too-many-locals",
"too-many-arguments",
"too-many-branches",
"too-many-statements",
"no-member"
]