-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.65 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
[build-system]
requires = [ "flit_core >=3.2,<4" ]
build-backend = "flit_core.buildapi"
[project]
name = "ntt"
dynamic = [ "version", "description" ]
readme = "README.md"
authors = [
{name = "Romain Vuillemot", email = "romain.vuillemot@ec-lyon.fr"},
]
maintainers = [
{name = "Romain Vuillemot", email = "romain.vuillemot@ec-lyon.fr"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries"
]
requires-python = ">=3.7"
# eyed3, pydub are used by pyAudioAnalysis, but not installed as dependencies
dependencies = ["requests", "opencv-python", "ffmpeg-python", "moviepy",
"scipy", "python-dotenv", "matplotlib", "pyAudioAnalysis", "eyed3", "pydub","librosa"]
[project.urls]
GitHub = "https://github.com/centralelyon/ntt/"
Documentation = "https://ntt.readthedocs.io/"
Issues = "https://github.com/centralelyon/ntt/issues"
CI = "https://app.circleci.com/pipelines/github/centralelyon/ntt"
[project.optional-dependencies]
dev = [
"black",
"pytest",
"flit",
"sphinx",
"sphinx-rtd-theme",
"pydata-sphinx-theme",
"sphinx-design",
"nbsphinx",
"nbsphinx-link",
"ipywidgets",
"sphinxcontrib-mermaid",
"sphinx-copybutton",
]
[tool.flit.sdist]
exclude = [".circleci", ".vscode", ".gitignore", ".readthedocs.yaml"]