-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MAINT] switch bidsschematools to pyproject.toml #1948
Merged
Merged
Changes from 4 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
78c9a83
switch to pyproject.toml
Remi-Gau 837c89c
msic
Remi-Gau 98c6f28
add manifest
Remi-Gau e4b55ed
fix
Remi-Gau 29f5059
try packaging data
Remi-Gau 91e6222
fix
Remi-Gau adbc938
rm manifest
Remi-Gau bc83dcb
fix: packages.find.include
effigies da16841
Apply suggestions from code review
Remi-Gau 2c9347f
reorder
Remi-Gau File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[flake8] | ||
max-line-length = 99 | ||
exclude = *build/ | ||
ignore = E203,E402,E722,W503 | ||
per-file-ignores = | ||
*/__init__.py : F401 | ||
docstring-convention = numpy |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include bidsschematools/data/metaschema.json | ||
include bidsschematools/data/schema/BIDS_VERSION | ||
include bidsschematools/data/schema/SCHEMA_VERSION | ||
recursive-include bidsschematools/data/schema *.yaml | ||
recursive-include bidsschematools/tests/data | ||
recursive-include bidsschematools/tests/data/ .bidsignore |
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 |
---|---|---|
@@ -1,11 +1,64 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
build-backend = "hatchling.build" | ||
requires = ["hatchling"] | ||
|
||
[project] | ||
authors = [{name = "bids-standard developers"}] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: MIT License", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13" | ||
] | ||
dependencies = [ | ||
"click", | ||
"pyyaml", | ||
"jsonschema" | ||
] | ||
description = " Python tools for working with the BIDS schema." | ||
license = {text = "MIT"} | ||
maintainers = [{name = "bids-standard developers", email = " [email protected]"}] | ||
name = "bidsschematools" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
version = "0.11.4-dev" # file:bidsschematools/data/schema/SCHEMA_VERSION | ||
Remi-Gau marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
[project.optional-dependencies] | ||
all = [ | ||
"bidsschematools[doc,render,tests,expressions]" | ||
] | ||
doc = [ | ||
"sphinx>=1.5.3", | ||
"sphinx_rtd_theme" | ||
] | ||
expressions = ["pyparsing"] | ||
render = [ | ||
"tabulate", | ||
"pandas", | ||
"markdown-it-py" | ||
] | ||
tests = [ | ||
"codecov", | ||
"coverage[toml]", | ||
"flake8", | ||
"flake8-black", | ||
"flake8-isort", | ||
"pytest>6", | ||
"pytest-cov" | ||
] | ||
Remi-Gau marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
[project.scripts] | ||
bst = "bidsschematools.__main__:cli" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/bids-standard/bids-specification" | ||
|
||
Remi-Gau marked this conversation as resolved.
Show resolved
Hide resolved
|
||
[tool.black] | ||
line-length = 99 | ||
target-version = ['py39'] | ||
include = '\.pyi?$' | ||
exclude = ''' | ||
Remi-Gau marked this conversation as resolved.
Show resolved
Hide resolved
|
||
( | ||
/( | ||
|
@@ -20,19 +73,27 @@ exclude = ''' | |
)/ | ||
) | ||
''' | ||
include = '\.pyi?$' | ||
line-length = 99 | ||
target-version = ['py39'] | ||
Remi-Gau marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
[tool.coverage.run] | ||
omit = [ | ||
"*/*/tests/*", | ||
"**/tests/*" | ||
] | ||
parallel = true | ||
|
||
[tool.isort] | ||
profile = "black" | ||
multi_line_output = 3 | ||
profile = "black" | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-ra --strict-markers --strict-config" | ||
log_cli = true | ||
log_cli_level = "INFO" | ||
markers = [ | ||
"validate_schema: tests that validate the schema itself", | ||
] | ||
|
||
[tool.coverage.run] | ||
parallel = true | ||
omit = [ | ||
"*/*/tests/*", | ||
"**/tests/*" | ||
"validate_schema: tests that validate the schema itself" | ||
] | ||
minversion = "6.0" | ||
xfail_strict = true |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think sorting leads to a very readable
pyproject.toml
, where I think there are some rough importance levels that are good to indicate (e.g. "name" should be the first thing in project metadata).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good with me
defo not a hill I want to die on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
forgot to commit this one