forked from openMetadataInitiative/bids2openminds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (37 loc) · 906 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "bids2openminds"
version = "0.1.0"
dependencies = [
"bids",
"openminds >= 0.2.3",
"click>=8.1",
"pandas",
"nameparser >= 1.1.3"
]
requires-python = ">=3.9"
authors = [
{name = "Peyman Najafi", email = "peyman.najafi@cnrs.fr"},
{name = "Andrew P. Davison", email = "andrew.davison@cnrs.fr"},
{name = "Lyuba Zehl", email = "lyuba.zehl@ebrains.eu"}
]
description = "Generates openMINDS metadata from a BIDS dataset"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python"
]
[project.scripts]
bids2openminds="bids2openminds.converter:convert_click"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov"
]
[tool.black]
line-length = 119
[tool.setuptools]
packages = ["bids2openminds"]