-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 1.28 KB
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
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "visione"
version = "0.5.2"
authors = [
{ name="Paolo Bolettieri", email="paolo.bolettieri@isti.cnr.it" },
{ name="Fabio Carrara", email="fabio.carrara@isti.cnr.it" },
{ name="Nicola Messina", email="nicola.messina@isti.cnr.it" },
{ name="Lucia Vadicamo", email="lucia.vadicamo@isti.cnr.it" },
{ name="Claudio Vairo", email="claudio.vairo@isti.cnr.it" },
]
description = "An interactive video retrieval system."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[project.urls]
"Homepage" = "https://github.com/aimh-lab/visione"
"Bug Tracker" = "https://github.com/aimh-lab/visione/issues"
[project.scripts]
visione = "visione.cli:__main__.main"
[tool.setuptools]
packages = [
"visione.cli",
"visione.services",
"visione.skel",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]