Spaces:
Runtime error
Runtime error
File size: 514 Bytes
c275a12 2690b62 c275a12 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
[project]
name = "vic"
version = "1.0.0"
description = "Vocabulary-free Image Classification"
readme = "README.md"
requires-python = ">=3.9,<3.11"
license = {file = "LICENCE"}
authors = [{name = "Alessandro Conti", email = "alessandro.conti.97@gmail.com"}]
classifiers = ["License :: OSI Approved :: MIT License"]
[tool.black]
line_length = 99
[tool.flake8]
count = true
ignore = ["E402"]
per-file-ignores = ["__init__.py:F401"]
exclude = []
max-line-length = 99
[tool.isort]
profile = "black"
line_length = 99
|