Spaces:
				
			
			
	
			
			
		Runtime error
		
	
	
	
			
			
	
	
	
	
		
		
		Runtime error
		
	File size: 667 Bytes
			
			| 5019931 | 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 | from setuptools import setup
setup(
    name='bytesep',
    version='0.0.1',
    description='Music source separation',
    author='ByteDance',
    url="https://github.com/bytedance/music_source_separation",
    license='Apache 2.0',
    packages=['bytesep'],
    include_package_data=True,
    install_requires=[
        'torch==1.7.1',
        'librosa==0.8.0',  # specify the version!
        'museval==0.4.0',
        'h5py==2.10.0',
        'pytorch_lightning==1.2.1',
        'numpy==1.18.5',
        'torchlibrosa==0.0.9',
        'matplotlib==3.3.4',
        'musdb==0.4.0',
        'museval==0.4.0',
        'inplace-abn==1.1.0'
    ],
    zip_safe=False
)
 | 
