nwb-linkml/pyproject.toml

93 lines
2.1 KiB
TOML
Raw Normal View History

2024-07-01 23:19:13 +00:00
[project]
description = "Monorepo root for nwb-linkml"
dependencies = []
requires-python = "<3.13,>=3.10"
[tool.pdm.dev-dependencies]
dev = [
'-e nwb-linkml @ file:///${PROJECT_ROOT}/nwb_linkml',
'-e nwb-schema-language @ file:///${PROJECT_ROOT}/nwb_schema_language',
'-e docs @ file:///${PROJECT_ROOT}/docs',
2024-07-02 04:22:35 +00:00
"ruff>=0.5.0",
"black>=24.4.2",
2024-07-02 02:07:12 +00:00
]
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git*,*.lock,*.css,./nwb_linkml/src/nwb_linkml/models,./nwb_linkml/src/nwb_linkml/schema'
check-hidden = true
# ignore-regex = ''
2024-07-02 04:22:35 +00:00
# ignore-words-list = ''
[tool.ruff]
target-version = "py311"
include = ["nwb_linkml/**/*.py", "nwb_schema_language/src/**/*.py", "pyproject.toml"]
exclude = [
"docs",
"nwb_schema_language/src/nwb_schema_language/datamodel/nwb_schema_language.py",
"nwb_schema_language/src/nwb_schema_language/datamodel/nwb_schema_pydantic.py",
"nwb_linkml/src/nwb_linkml/models/**/*.py"
]
line-length = 100
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# annotations
"ANN",
## ----------
# pydocstyle
# undocumented public objects
2024-07-02 05:09:49 +00:00
"D100", "D101", "D102", "D103", "D104", "D106",
2024-07-02 04:22:35 +00:00
# indentation
2024-07-02 05:09:49 +00:00
"D207", "D208", "D209",
2024-07-02 04:22:35 +00:00
# whitespace
"D210", "D211",
# emptiness
"D419",
]
ignore = [
"ANN101", "ANN102", "ANN401", "ANN204",
# explicit strict arg for zip
"B905",
# builtin type annotations
"UP006", "UP035",
# | for Union types (only supported >=3.10
"UP007", "UP038",
]
fixable = ["ALL"]
2024-07-02 05:09:49 +00:00
[tool.ruff.lint.per-file-ignores]
2024-07-02 05:58:55 +00:00
"**/tests/**.py" = ["D", "ANN", "E501", "F841", "F722"]
2024-07-02 05:09:49 +00:00
2024-07-02 04:22:35 +00:00
[tool.mypy]
plugins = [
"pydantic.mypy"
]
packages = [
"miniscope_io"
]
exclude = [
'.*vendor.*'
]
follow_imports = "silent"
warn_unreachable = true
[tool.black]
target-version = ['py38', 'py39', 'py310', 'py311']
2024-07-02 05:09:49 +00:00
enable-unstable-feature = ["string_processing"]
preview = true
2024-07-02 04:22:35 +00:00
include = "nwb_linkml/.*\\.py$|nwb_schema_language/.*\\.py$"
line-length = 100