-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1008 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="ared",
version="0.1.0",
author="eliird",
author_email="irdali1996@gmail.com",
description="A library to detect emotion from audio, video and text data together",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/eliird/ared",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'numpy>=1.18.0',
'opencv-python',
'torchaudio',
'torch',
'torchvision',
'transformers',
'librosa', 'moviepy', 'facenet_pytorch',
'tiktoken',
'transformers_stream_generator'
],
entry_points={
'console_scripts': [
],
},
include_package_data=True,
package_data={
},
)