Chorus-Detection / setup.py
dennisvdang's picture
Refactor code and remove unnecessary files
606184e
raw
history blame contribute delete
544 Bytes
#!/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",
)