forked from detly/gammatone
-
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.
refactor: move source code to
src/
(#8)
* refactor: move source code to `src/` * compress image --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
bbaa029
commit 137e8e5
Showing
19 changed files
with
47 additions
and
19 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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Manifest syntax https://packaging.python.org/en/latest/guides/using-manifest-in/ | ||
graft wheelhouse | ||
|
||
recursive-exclude __pycache__ *.py[cod] *.orig | ||
|
||
# Include the README and CHANGELOG | ||
include *.md | ||
recursive-include src *.md | ||
|
||
# Include marker file for PEP 561 | ||
recursive-include src *.typed | ||
|
||
exclude *.sh | ||
exclude *.toml | ||
exclude *.svg | ||
|
||
# Exclude build configs | ||
exclude *.yml | ||
exclude *.yaml | ||
|
||
prune .git | ||
prune .github | ||
prune Matlab* | ||
prune docs* | ||
prune test* |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -19,11 +19,12 @@ | |
author="Jason Heeris", | ||
author_email="[email protected]", | ||
url="https://github.com/Lightning-Sandbox/gammatone", | ||
download_url="https://github.com/Lightning-Sandbox/gammatone/archive/master.zip", | ||
download_url="https://github.com/Lightning-Sandbox/gammatone/archive/main.zip", | ||
long_description=README, | ||
python_requires=">=3.8", | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(exclude=["tests"]), | ||
packages=find_packages(where="src"), | ||
package_dir={"": "src"}, | ||
install_requires=["numpy", "scipy", "matplotlib"], | ||
extras_require={"test": ["pytest", "mock"]}, | ||
entry_points={"console_scripts": ["gammatone = gammatone.plot:main"]}, | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
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
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