forked from unum-cloud/uform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·57 lines (52 loc) · 1.57 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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "uform"
version = "0.4.2"
authors = [
{ name="Mikhail Kim", email="[email protected]" },
{ name="Vladimir Orshulevich", email="[email protected]" },
{ name="Ash Vardanian", email="[email protected]" },
]
maintainers = [
{ name="Unum Cloud", email="[email protected]" },
]
dependencies = [
"torch>=1.13.1",
"tokenizers>=0.13.3",
"huggingface_hub>=0.16.4",
"torchvision"
]
description = "Multi-Modal Transformers library for Semantic Search and other Vision-Language tasks"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
"Natural Language :: English",
"Natural Language :: French",
"Natural Language :: Korean",
"Natural Language :: German",
"Natural Language :: Italian",
"Natural Language :: Polish",
"Natural Language :: Spanish",
"Natural Language :: Japanese",
"Natural Language :: Russian",
"Natural Language :: Turkish",
"Natural Language :: Chinese (Simplified)",
]
[project.urls]
"Homepage" = "https://github.com/unum-cloud/uform"
[project.optional-dependencies]
remote = [
"tritonclient[all]"
]
ipu = [
"poptorch"
]