You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
326 B
Python

from setuptools import setup
setup(
name='noisecut',
version='0.0.1',
author='Zahra Zali',
license='AGPLv3',
package_dir={
'noisecut': 'src'
},
packages=[
'noisecut'],
install_requires=[
'numpy<=2.21',
'matplotlib',
'obspy',
'librosa',
],
)