-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.02 KB
/
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
39
40
41
42
43
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='radio-analyzer',
version='0.1',
author='Albert Lattke',
author_email='albert.lattke@gmail.com',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/SeTruphe/Radio-Analyzer',
license='MIT',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.10',
install_requires=[
'whisper',
'openai-whisper',
'pydub',
'transformers >= 4.33',
'torch',
'ffmpeg',
'evaluate',
'datasets',
'numpy',
'tokenizers',
'scipy',
'gradio',
'noisereduce',
'geopy',
'plotly',
'setuptools',
'moviepy',
'nltk'
],
entry_points={
'console_scripts': [
'radio-analyzer=radio_analyzer.visualiser:run_radio_analyzer',
],
},
)