forked from ox-vgg/follow-things-around
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (56 loc) · 1.63 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "follow-things-around"
version = "0.0.0+dev"
description = "Flexible tracking of whatever by detection"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "COPYING"}
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"Pillow",
"detectron2",
"matplotlib",
"opencv-python",
"pandas",
"requests",
"svt",
"torch",
]
[project.optional-dependencies]
colab = [
# "google-colab" in PyPI requires pandas~=0.24.0 which won't
# install in recent Python versions. It is only needed when
# running the notebook in Colab which already has it anyway.
"google-colab",
"follow-things-around[widgets]",
]
widgets = [
"ipython",
"ipywidgets",
"plotly",
]
[project.urls]
Homepage = "https://www.robots.ox.ac.uk/~vgg/software/follow-things-around"
Repository = "https://github.com/ox-vgg/follow-things-around"
[build-system]
requires = ['setuptools']
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
line_length = 79
lines_after_imports = 2
# Despite the profile option being set to "black", there's still some
# options that are not correcly set in a compatible manner. The
# following are for compatibility with black style.
combine_as_imports = true
include_trailing_comma = true
multi_line_output = 3 # multi lineoutput 3 is vert-hanging
[tool.black]
line-length = 79
target-version = ['py37', 'py38']
[tool.pylint.FORMAT]
max-line-length = 79