-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
df7b0e2
commit 9b3c66c
Showing
3 changed files
with
17 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ __pycache__/ | |
# C extensions | ||
*.so | ||
*.DS_Store | ||
|
||
*logs/ | ||
|
||
|
||
# Distribution / packaging | ||
|
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,13 @@ | ||
#!/bin/bash | ||
|
||
|
||
|
||
# Linting | ||
|
||
isort mlxp | ||
docformatter --recursive --in-place --wrap-summaries 88 --wrap-descriptions 88 mlxp | ||
black mlxp --line-length=110 | ||
|
||
flake8 mlxp --count --select=E9,F63,F7,F82 --show-source --statistics | ||
flake8 mlxp --count --max-complexity=10 --max-line-length=110 --statistics | ||
find mlxp -type f -name "*.py" | xargs pylint |
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,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=52.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" |