-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (76 loc) · 2.33 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (76 loc) · 2.33 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
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
73
74
75
76
77
78
79
80
81
[build-system]
requires = [ "flit_core==3.12.0" ]
build-backend = "flit_core.buildapi"
[project]
name = "ntt"
dynamic = [ "version", "description" ]
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Romain Vuillemot", email = "romain.vuillemot@gmail.com"},
]
maintainers = [
{name = "Romain Vuillemot", email = "romain.vuillemot@gmail.com"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries"
]
requires-python = ">=3.13"
# eyed3, pydub are used by pyAudioAnalysis, but not installed as dependencies
dependencies = [
"requests==2.31.0",
"opencv-python==4.12.0.88",
"ffmpeg-python==0.2.0",
"moviepy==1.0.3",
"scipy==1.18.0",
"python-dotenv==1.0.1",
"matplotlib==3.11.1",
"pyAudioAnalysis==0.3.14",
"eyed3==0.9.7",
"pydub==0.25.1",
"librosa==0.11.0",
"Pillow==12.3.0",
"exifread==3.5.1",
]
[project.urls]
GitHub = "https://github.com/centralelyon/ntt/"
Documentation = "https://ntt.readthedocs.io/"
Issues = "https://github.com/centralelyon/ntt/issues"
CI = "https://github.com/centralelyon/ntt/actions"
[project.optional-dependencies]
dev = [
"black==23.3.0",
"pytest==8.1.1",
"flit==3.12.0",
"flatdir==0.0.25",
"pipeoptz==0.1.5",
"sphinx==6.2.1",
"sphinx-rtd-theme==1.2.2",
"pydata-sphinx-theme==0.15.2",
"sphinx-design==0.5.0",
"nbsphinx==0.9.3",
"nbsphinx-link==1.3.0",
"ipywidgets==8.0.7",
"sphinxcontrib-mermaid==0.9.2",
"sphinx-copybutton==0.5.2",
]
[tool.flit.sdist]
exclude = [".vscode", ".gitignore", ".readthedocs.yaml"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:.*oneOf.*deprecated.*:DeprecationWarning",
"ignore:.*parseString.*deprecated.*:DeprecationWarning",
"ignore:.*resetCache.*deprecated.*:DeprecationWarning",
"ignore:.*enablePackrat.*deprecated.*:DeprecationWarning",
]