-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) · 1.16 KB
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
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "bids2openminds"
version = "0.1.1"
dependencies = [
"bids-validator == 1.14.6" ,
"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"
[project.urls]
Documentation = "https://bids2openminds.readthedocs.io/"
[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"]
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git*,*.svg'
check-hidden = true
# ignore-regex = ''
# ignore-words-list = ''