jone/Music_Source_Separation
3
1from setuptools import setup2 3setup(4 name='bytesep',5 version='0.0.1',6 description='Music source separation',7 author='ByteDance',8 url="https://github.com/bytedance/music_source_separation",9 license='Apache 2.0',10 packages=['bytesep'],11 include_package_data=True,12 install_requires=[13 'torch==1.7.1',14 'librosa==0.8.0', # specify the version!15 'museval==0.4.0',16 'h5py==2.10.0',17 'pytorch_lightning==1.2.1',18 'numpy==1.18.5',19 'torchlibrosa==0.0.9',20 'matplotlib==3.3.4',21 'musdb==0.4.0',22 'museval==0.4.0'23 ],24 zip_safe=False25)26 