-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.cfg
More file actions
115 lines (108 loc) · 2.55 KB
/
setup.cfg
File metadata and controls
115 lines (108 loc) · 2.55 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# see documentation, e.g.
# - https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
# - https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
# - https://www.python.org/dev/peps/pep-0314/
[metadata]
author = Malte Luken
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
description = Emotion expression capture from multiple modalities.
keywords =
emotion
multimodal
expression
long_description = file: README.md
long_description_content_type = text/markdown
name = mexca
project_urls =
Bug Tracker = https://github.com/mexca/mexca/issues
url = https://github.com/mexca/mexca
version = 1.0.4
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >3.7,<3.11
install_requires =
docker>=6.0.1
intervaltree>=3.1.0
moviepy>=1.0.3
numpy>=1.21,<1.24
polars==0.19.8
pydantic==2.4.2
pyyaml>=6.0
scipy>=1.7.3
srt>=3.5.2
tqdm>=4.64.0
[options.entry_points]
console_scripts =
extract-faces = mexca.video.extraction:cli
identify-speakers = mexca.audio.identification:cli
extract-voice = mexca.audio.extraction:cli
transcribe = mexca.text.transcription:cli
extract-sentiment = mexca.text.sentiment:cli
[options.data_files]
# This section requires setuptools>=40.6.0
# It remains empty for now
# Check if MANIFEST.in works for your purposes
[options.extras_require]
vid =
facenet-pytorch==2.5.3
av==10.0
huggingface-hub==0.17.3
scikit-learn==1.3.1
torch>=2.0
spe =
pyannote.audio==3.1.1
pyannote.core>=5.0
torch>=2.0
voi =
emvoice
librosa<0.10.0
tra =
openai-whisper
torch>=2.0
transformers==4.25.1
sen =
accelerate==0.18.0
bitsandbytes==0.38.1
protobuf==3.20
sentencepiece
torch>=2.0
transformers==4.25.1
all = mexca[vid,spe,voi,tra,sen]
demo =
ipywidgets
notebook
dev =
black
bump2version
prospector[with_pyroma]==1.7.7
pre-commit
pylint==2.15.6
isort
pytest
pytest-cov
sphinx
sphinx_rtd_theme
sphinx-autoapi
tox
myst_parser
publishing =
twine
wheel
[options.packages.find]
include = mexca, mexca.*
[isort]
profile = black
known_first_party = mexca
src_paths = mexca,tests
line_length = 80
multi_line_output = 3