forked from KaihuaTang/Scene-Graph-Benchmark.pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.34 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
[tool.poetry]
name = "maskrcnn_benchmark"
version = "0.1.0-alpha.1"
description = "Scene graph benchmark"
authors = ["Spencer Hallyburton <spencer.hallyburton@duke.edu>", "Kaihua Tang", "Facebook"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/cpsl-research/Scene-Graph-Benchmark.pytorch/"
keywords = ["scene graph", "neuro-symbolic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
]
packages = [{include = "maskrcnn_benchmark"}]
[tool.poetry.dependencies]
python = "~3.8"
numpy = ">=1.20, <1.24"
opencv-python = ">=4.3, <4.7"
torch = { url = "https://download.pytorch.org/whl/cu113/torch-1.10.0%2Bcu113-cp38-cp38-linux_x86_64.whl" }
torchvision = { url = "https://download.pytorch.org/whl/cu113/torchvision-0.11.0%2Bcu113-cp38-cp38-linux_x86_64.whl" }
pycocotools = "^2.0.6"
yacs = "^0.1.8"
tqdm = "^4"
scipy = "^1.9"
h5py = "^3.9.0"
cityscapesScripts = "^1.5.0"
[tool.poetry.group.test.dependencies]
pytest = "^7"
pytest-cov = "^4"
bandit = "^1.7"
black = "~22.12.0"
mypy = "^0"
isort = "^5.11"
flake8 = "^5.0"
ipdb = "^0.13.13"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -s"
testpaths = [
"tests",
"integration",
]
[build-system]
requires = [
"poetry-core",
]
build-backend = "poetry.core.masonry.api"