Skip to content

Commit

Permalink
Add project authors field
Browse files Browse the repository at this point in the history
  • Loading branch information
jl-wynen committed Aug 11, 2023
1 parent c7d6272 commit a567a4e
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ build-backend = "setuptools.build_meta"
name = "scitacean"
description = "High-level interface for SciCat"
license = { "file" = "LICENSE" }
authors = [{ name = "Scitacean contributors" }]
readme = "README.md"
keywords = ["scicat"]
classifiers = [
Expand All @@ -35,9 +36,9 @@ dependencies = [
dynamic = ["version"]

[project.urls]
"Documentation" = "https://scicatproject.github.io/scitacean"
"Bug Tracker" = "https://github.com/SciCatProject/scitacean/issues"
"Source" = "https://github.com/SciCatProject/scitacean"
"Documentation" = "https://scicatproject.github.io/scitacean"
"Bug Tracker" = "https://github.com/SciCatProject/scitacean/issues"
"Source" = "https://github.com/SciCatProject/scitacean"

[project.optional-dependencies]
ssh = ["fabric"]
Expand Down Expand Up @@ -85,12 +86,13 @@ disallow_untyped_defs = false
[tool.ruff]
line-length = 88
select = ["B", "D", "E", "F", "I", "S", "T20", "PGH", "FBT003", "RUF100"]
ignore = ["B905", # `zip()` without an explicit `strict=` parameter
"S324", # insecure hsh function; we don't use hashing for security
"E741", "E742", "E743", # do not use names ‘l’, ‘O’, or ‘I’; they are not a problem with a proper font
"D100", "D101", "D102", "D103", "D104", "D105", # TODO remove D10* once everything has docstrings
]
extend-exclude = [".*","__pycache__","build","dist","venv"]
ignore = [
"B905", # `zip()` without an explicit `strict=` parameter
"S324", # insecure hsh function; we don't use hashing for security
"E741", "E742", "E743", # do not use names ‘l’, ‘O’, or ‘I’; they are not a problem with a proper font
"D100", "D101", "D102", "D103", "D104", "D105", # TODO remove D10* once everything has docstrings
]
extend-exclude = [".*", "__pycache__", "build", "dist", "venv"]
fixable = ["I001"]

[tool.ruff.per-file-ignores]
Expand Down

0 comments on commit a567a4e

Please sign in to comment.