-
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.
Merge pull request #20 from KristinaGomoryova/poetry
Keywords field in pyproject.toml file updated
- Loading branch information
Showing
2 changed files
with
15 additions
and
13 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,6 +5,7 @@ description = "This package adjusts and cleans the metadata file provided by a u | |
authors = ["Zargham Ahmad <[email protected]>" ] | ||
license = "MIT" | ||
readme = "README.md" | ||
keywords = ["metadata", "alkanes", "metabolomics"] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
|
@@ -46,7 +47,7 @@ line-length = 120 | |
|
||
[tool.ruff.lint] | ||
# Enable Pyflakes `E` and `F` codes by default. | ||
select = [ | ||
lint.select = [ | ||
"F", # Pyflakes | ||
"E", # pycodestyle (error) | ||
"W", # pycodestyle (warning) | ||
|
@@ -60,7 +61,7 @@ select = [ | |
# "PLW", # Warning | ||
|
||
] | ||
ignore = [ | ||
lint.ignore = [ | ||
'D100', # Missing module docstring | ||
'D104', # Missing public package docstring | ||
# The following list excludes rules irrelevant to the Google style | ||
|
@@ -79,8 +80,8 @@ ignore = [ | |
] | ||
|
||
# Allow autofix for all enabled rules (when `--fix`) is provided. | ||
fixable = ["A", "B", "C", "D", "E", "F", "I"] | ||
unfixable = [] | ||
lint.fixable = ["A", "B", "C", "D", "E", "F", "I"] | ||
lint.unfixable = [] | ||
|
||
exclude = [ | ||
".bzr", | ||
|
@@ -105,11 +106,12 @@ exclude = [ | |
".venv", | ||
"scripts", | ||
] | ||
per-file-ignores = {} | ||
lint.per-file-ignores = {} | ||
|
||
|
||
# Allow unused variables when underscore-prefixed. | ||
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" | ||
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" | ||
lint.line-length = 120 | ||
|
||
[tool.ruff.lint.isort] | ||
known-first-party = ["rcx_tk"] | ||
|
@@ -126,4 +128,4 @@ filename = "pyproject.toml" | |
filename = "CITATION.cff" | ||
|
||
[[tool.bumpversion.files]] | ||
filename = "docs/conf.py" | ||
filename = "docs/conf.py" |
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