#!/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", )