-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (46 loc) · 1.49 KB
/
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
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "d2b"
version = "1.4.2"
description = "Organize data in the BIDS format"
authors = ["Andrew Ross <[email protected]>"]
readme = "README.md"
keywords = ["neuroscience", "neuroimaging", "bids", "cli", "tool"]
homepage = "https://github.com/d2b-dev/d2b"
repository = "https://github.com/d2b-dev/d2b"
documentation = "https://github.com/d2b-dev/d2b"
classifiers = [
"Environment :: Console",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.8.0,<4.0"
pluggy = ">=0.12,<1.0.0a1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^3.9.2"
pylint = "^2.10.2"
reorder-python-imports = "^2.6.0"
pre-commit = "^2.14.0"
bump2version = "^1.0.1"
pytest = "^6.2.4"
pytest-mock = "^3.6.1"
pytest-cov = "^2.12.1"
[tool.poetry.scripts]
d2b = 'd2b.cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"