-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (33 loc) · 966 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
[tool.poetry]
name = "fmri-physio-log"
version = "0.3.3"
description = "Parse Siemens PMU files"
authors = [
"Andrew Ross <andrew.ross.mail@gmail.com>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/andrewrosss/fmri-physio-log"
repository = "https://github.com/andrewrosss/fmri-physio-log"
documentation = "https://github.com/andrewrosss/fmri-physio-log"
keywords = ["mri", "siemens", "pmu"]
classifiers = [
"Programming Language :: Python :: 3.0",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
flake8 = "^7.1.0"
pylint = "^3.2.5"
reorder-python-imports = "^3.13.0"
bump2version = "^1.0.1"
pre-commit = "^3.7.1"
pytest = "^8.2.2"
lark = "^1.1.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"