Skip to content

Commit 2aa18e6

Browse files
committed
added fileformats deps to pyproject
1 parent be19057 commit 2aa18e6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ All tasks will be inserted into the `pydra.tasks.<yourtaskpackagename>` namespac
1212
replace with appropriate name.
1313
1. One of the folders is called CHANGEME. This should also be renamed to your package
1414
name.
15-
1. Under the newly renamed package (i.e. formerly CHANGME) there is a directory named "v1",
15+
1. Under the newly renamed package (i.e. formerly CHANGEME) there is a directory named "v1",
1616
`pydra/tasks/<package-name>/v1`, change this to valid Python package name starting with
1717
'v' to indicate the version of the tool the Pydra interfaces will be designed for,
1818
e.g. FSL v6.0.2 could be `pydra/tasks/fsl/v6` or `pydra/tasks/fsl/v6_0` depending on

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ name = "pydra-tasks-CHANGEME"
77
description = "Pydra tasks package for CHANGEME"
88
readme = "README.md"
99
requires-python = ">=3.8"
10-
dependencies = ["pydra >=0.22"]
10+
dependencies = [
11+
"pydra >=0.22",
12+
"fileformats >=0.8.3",
13+
"fileformats-datascience >=0.1",
14+
"fileformats-medimage >=0.4.1"]
1115
license = {file = "LICENSE"}
1216
authors = [{name = "Nipype developers", email = "[email protected]"}]
1317
maintainers = [{name = "Nipype developers", email = "[email protected]"}]

0 commit comments

Comments
 (0)