-
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.
added codestyle through isort, black and flake8
- Loading branch information
Jan Luca van den Busch
committed
Jan 28, 2024
1 parent
8c99984
commit 5647df1
Showing
4 changed files
with
42 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
max-doc-length = 80 | ||
extend-ignore = E203 E501 W505 | ||
per-file-ignores = | ||
src/yaw/__init__.py: E402 |
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,3 +1,10 @@ | ||
__version__ = "0.1" | ||
|
||
from ._balltree import BallTree, default_leafsize | ||
from .angulartree import AngularTree | ||
|
||
__all__ = [ | ||
"AngularTree", | ||
"BallTree", | ||
"default_leafsize", | ||
] |
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 |
---|---|---|
@@ -1,2 +1,5 @@ | ||
numpy | ||
pytest | ||
pytest | ||
black | ||
isort | ||
flake8 |