-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to pyproject.toml for package configuration (#78)
We can now remove setup.cfg since setuptools supports pyproject.toml.
- Loading branch information
Showing
6 changed files
with
90 additions
and
87 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Configure flake8 | ||
|
||
[flake8] | ||
max-line-length = 88 | ||
max-doc-length = 79 | ||
ignore = | ||
# Too many leading '#' for block comment | ||
E266, | ||
# Line too long (82 > 79 characters) | ||
E501, | ||
# Do not use variables named 'I', 'O', or 'l' | ||
E741, | ||
# Line break before binary operator (conflicts with black) | ||
W503, | ||
# Ignore spaces before a colon (Black handles it) | ||
E203, | ||
exclude = | ||
.git, | ||
__pycache__, | ||
.ipynb_checkpoints, | ||
doc/_build, | ||
per-file-ignores = | ||
# disable unused-imports errors on __init__.py | ||
__init__.py: F401, | ||
_io.py: A005, | ||
|
||
# Configure flake8-rst-docstrings | ||
# ------------------------------- | ||
# Add some roles used in our docstrings | ||
rst-roles = | ||
class, | ||
func, | ||
mod, | ||
meth, | ||
ref, | ||
# Ignore "Unknown target name" raised on citations | ||
extend-ignore = RST306 | ||
|
||
# Configure flake8-functions | ||
# -------------------------- | ||
# Allow a max of 10 arguments per function | ||
max-parameters-amount = 10 |
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