Skip to content

Commit

Permalink
reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Oct 11, 2024
1 parent da16841 commit 2c9347f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repos:
rev: v2.14.0
hooks:
- id: pretty-format-toml
args: [--autofix, --indent, '4']
args: [--autofix, --indent, '4', --no-sort]
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
Expand Down
32 changes: 16 additions & 16 deletions tools/schemacode/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,22 @@ bst = "bidsschematools.__main__:cli"
[project.urls]
Homepage = "https://github.com/bids-standard/bids-specification"

[tool.setuptools.dynamic]
version = {file = "bidsschematools/data/schema/SCHEMA_VERSION"}

[tool.setuptools.package-data]
bidsschematools = [
"data/metaschema.json",
"data/schema/BIDS_VERSION",
"data/schema/SCHEMA_VERSIO",
"data/schema/**/*.yaml",
"tests/data/**/*",
"tests/data/**/.bidsignore"
]

[tool.setuptools.packages.find]
include = ["bidsschematools*"]

[tool.black]
line-length = 99
include = '\.pyi?$'
Expand Down Expand Up @@ -97,19 +113,3 @@ markers = [
]
minversion = "6.0"
xfail_strict = true

[tool.setuptools.dynamic]
version = {file = "bidsschematools/data/schema/SCHEMA_VERSION"}

[tool.setuptools.package-data]
bidsschematools = [
"data/metaschema.json",
"data/schema/BIDS_VERSION",
"data/schema/SCHEMA_VERSIO",
"data/schema/**/*.yaml",
"tests/data/**/*",
"tests/data/**/.bidsignore"
]

[tool.setuptools.packages.find]
include = ["bidsschematools*"]

0 comments on commit 2c9347f

Please sign in to comment.