-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 764 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 764 Bytes
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
[project]
name = "VisualQA"
version = "1.0.0"
description = "Visual Question Answering in PyTorch"
readme = "README.md"
authors = [
{ name = "Varun Agrawal", email = "varagrawal@gmail.com" }
]
requires-python = ">= 3.11"
dependencies = [
"nltk>=3.9.2",
"numpy>=2.0.0",
"pillow>=12.0.0",
"torch>=2.6.0",
"torchvision>=0.24",
"tqdm>=4.67.1",
"visdom>=0.2.4",
]
classifiers = [
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
]
[project.license]
text = "MIT"
[project.urls]
Homepage = "https://github.com/varunagrawal/VisualQA"
Repository = "https://github.com/varunagrawal/VisualQA"