Skip to content

Commit

Permalink
added dependencies to pyproject from niworkflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed May 21, 2024
1 parent b20de68 commit a08f39e
Showing 1 changed file with 26 additions and 11 deletions.
37 changes: 26 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,34 @@ description = "Pydra tasks package for niworkflows"
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [
"pydra >=0.22",
"importlib_resources >= 5.7; python_version < '3.11'",
"fileformats >=0.8.3",
"fileformats-datascience >=0.1",
"fileformats-medimage >=0.4.1",
"jinja2",
"looseversion",
"matplotlib >= 3.4.2",
"nibabel >= 3.0",
"nilearn >= 0.5.2",
"nitransforms >= 21.0.0",
"numpy",
"packaging",
"pandas",
"pybids >= 0.15.1",
"pydra >=0.22",
"PyYAML",
"scikit-image",
"scipy",
"seaborn",
"svgutils >= 0.3.4",
"templateflow >= 0.7.2",
"transforms3d",
]
license = { file = "LICENSE" }
authors = [{ name = "Nipype developers", email = "[email protected]" }]
maintainers = [
{ name = "Nipype developers", email = "[email protected]" },
]
license = {file = "LICENSE"}
authors = [{name = "Nipype developers", email = "[email protected]"}]
maintainers = [{name = "Nipype developers", email = "[email protected]"}]
keywords = ["pydra"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
Expand All @@ -30,10 +50,7 @@ classifiers = [
dynamic = ["version"]

[project.optional-dependencies]
dev = [
"black",
"pre-commit",
]
dev = ["black", "pre-commit"]
doc = [
"packaging",
"sphinx >=2.1.2",
Expand Down Expand Up @@ -74,9 +91,7 @@ ignore-words = ".codespell-ignorewords"

[tool.flake8]
doctests = true
per-file-ignores = [
"__init__.py:F401,F403"
]
per-file-ignores = ["__init__.py:F401,F403"]
max-line-length = 88
select = "C,E,F,W,B,B950"
extend-ignore = ['E203', 'E501', 'E129', 'W503']

0 comments on commit a08f39e

Please sign in to comment.