feat(src): implement working function for dataset B to create ready data from STFT files stft_files and add setup.py for package configuration

This commit is contained in:
nuluh
2025-04-24 09:32:22 +07:00
parent 90a5a76609
commit cba4a00cd8
3 changed files with 38 additions and 23 deletions

8
setup.py Normal file
View File

@@ -0,0 +1,8 @@
from setuptools import setup, find_packages
setup(
name="thesisrepo",
version="0.1",
packages=find_packages(where="code"),
package_dir={"": "code"},
)