-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
269 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,3 @@ | |
def amplify(data, factor=2): | ||
"""Amplifies the signal.""" | ||
return data * factor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name='sygnals', | ||
version='0.1.0', | ||
description='A versatile CLI for signal and audio processing.', | ||
author='Araray Velho', | ||
author_email='[email protected]', | ||
name="sygnals", | ||
version="0.1.0", | ||
description="A versatile CLI for signal and audio processing.", | ||
author="Araray Velho", | ||
author_email="[email protected]", | ||
packages=find_packages(), | ||
install_requires=[ | ||
'numpy', | ||
'scipy', | ||
'pandas', | ||
'pandasql', | ||
'librosa', | ||
'soundfile', | ||
'matplotlib', | ||
'click', | ||
'tabulate', | ||
'pywavelets' | ||
"numpy", | ||
"scipy", | ||
"pandas", | ||
"pandasql", | ||
"librosa", | ||
"soundfile", | ||
"matplotlib", | ||
"click", | ||
"tabulate", | ||
"pywavelets", | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
'sygnals=sygnals.cli:cli', | ||
"console_scripts": [ | ||
"sygnals=sygnals.cli:cli", | ||
], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,5 @@ | |
"plugin_manager", | ||
"batch_processor", | ||
"custom_exec", | ||
"storage" | ||
"storage", | ||
] |
Oops, something went wrong.