Spaces:
Running
Running
File size: 544 Bytes
66bef05 ad0da04 66bef05 |
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 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="chorus_detection",
version="0.1.0",
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"tqdm",
"tensorflow",
"keras",
"scikit-learn",
"librosa",
"soundfile",
"pydub",
"ffmpeg-python",
"yt-dlp",
"requests",
"matplotlib",
"streamlit",
"huggingface_hub",
],
python_requires=">=3.9",
) |