Skip to content

Commit

Permalink
build: reorganize build metadata (#549) (#550)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson authored Mar 22, 2024
1 parent b34fd8e commit 66f1dd3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
description = "VICC normalization routine for variations"
Expand Down Expand Up @@ -49,7 +50,7 @@ Source = "https://github.com/cancervariants/variation-normalization"
"Bug Tracker" = "https://github.com/cancervariants/variation-normalization/issues"

[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"

[tool.setuptools.dynamic]
Expand All @@ -72,7 +73,8 @@ branch = true
[tool.ruff]
src = ["src"]

lint.select = [
[tool.ruff.lint]
select = [
"F", # https://docs.astral.sh/ruff/rules/#pyflakes-f
"E", "W", # https://docs.astral.sh/ruff/rules/#pycodestyle-e-w
"I", # https://docs.astral.sh/ruff/rules/#isort-i
Expand Down Expand Up @@ -100,8 +102,7 @@ lint.select = [
"PGH", # https://docs.astral.sh/ruff/rules/#pygrep-hooks-pgh
"RUF", # https://docs.astral.sh/ruff/rules/#ruff-specific-rules-ruf
]

lint.fixable = [
fixable = [
"I",
"F401",
"D",
Expand Down Expand Up @@ -132,7 +133,7 @@ lint.fixable = [
# W191 - tab-indentation*
# PGH003 - blanket-type-ignore
# *ignored for compatibility with formatter
lint.ignore = [
ignore = [
"ANN101", "ANN003",
"D203", "D205", "D206", "D213", "D300", "D400", "D415",
"E111", "E114", "E117", "E501",
Expand Down

0 comments on commit 66f1dd3

Please sign in to comment.