-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
38 lines (36 loc) · 1.3 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "advene"
dynamic = ["version"]
dependencies = [ "CherryPy", "requests" ]
description = "Annotate DVds, Exchange on the NEt"
keywords = [ "video", "annotation", "caqdas" ]
authors = [
{name = "Olivier Aubert", email = "[email protected]"},
{name = "Pierre-Antoine Champin", email = "[email protected]"},
{name = "Yannick Prié", email = "[email protected]"}
]
maintainers = [
{name = "Olivier Aubert", email = "[email protected]"}
]
readme = "README.txt"
license = {text = "GPLv2+"}
classifiers = [
"Environment :: X11 Applications :: GTK",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video :: Non-Linear Editor"
]
[project.urls]
Homepage = "https://www.advene.org/"
Documentation = "https://www.advene.org/"
Repository = "https://github.com/oaubert/advene.git"
"Bug Tracker" = "https://github.com/oaubert/advene/issues"
Changelog = "https://github.com/oaubert/advene/blob/master/CHANGES.txt"