Spaces:
Runtime error
Runtime error
File size: 1,355 Bytes
c66fb0b |
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 |
[tool.poetry]
name = "Model Demo with Gradio"
version = "0.0.1"
description = ""
authors = ["[email protected]"]
[tool.poetry.dependencies]
python = "^3.8, <3.11"
gradio = "^3.23.0"
numpy = "^1.24.2"
onnxruntime = "^1.14.1"
requests = "^2.28.2"
torchvision = "^0.15.1"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
liccheck = "^0.8.3"
pylint = "^2.17.0"
pytest = "^7.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
#[tool.liccheck]
#authorized_licenses = [
# "bsd",
# "new bsd",
# "bsd license",
# "new bsd license",
# "simplified bsd",
# "apache",
# "apache 2.0",
# "apache software license",
# "gnu lgpl",
# "lgpl with exceptions or zpl",
# "isc license",
# "isc license (iscl)",
# "mit",
# "mit license",
# "python software foundation",
# "python software foundation license",
# "zpl 2.1",
# "historical permission notice and disclaimer",
# "gpl v3"
#]
#unauthorized_licenses = [""]
#authorized_packages = [
# "aiohttp: *",
# "aiosignal: *",
# "async-timeout: *",
# "bcrypt: *",
# "certifi: *",
# "frozenlist: *",
# "gradio: *",
# "monotonic: *",
# "multidict: *",
# "openvino: *",
# "paramiko: *",
# "Pillow: *",
# "PyNaCl: *",
# "python-multipart: *",
# "requests: *",
# "yarl: *"
#]
|