-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
54 lines (46 loc) · 1.18 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "openneuro-py"
description = "A Python client for OpenNeuro."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["science", "neuroscience"]
authors = [
{ name = "Richard Höchenberger", email = "richard.hoechenberger@gmail.com" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
]
dependencies = [
"httpx >= 0.15",
"requests",
"tqdm",
"typer-slim[standard]",
"aiofiles",
"sgqlc",
"platformdirs",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = ["pytest", "pre-commit"]
[project.scripts]
openneuro-py = "openneuro._cli:app"
[project.urls]
homepage = "https://github.com/hoechenberger/openneuro-py"
[tool.hatch.version]
source = "vcs"
raw-options = { version_scheme = "release-branch-semver" }
[tool.hatch.build.targets.wheel]
packages = ["src/openneuro"]
[tool.pytest.ini_options]
addopts = "-ra -vv --tb=short --durations=10"
[tool.ruff.lint]
select = ["E", "F", "W", "D", "I"]
ignore = [
"D203", # one-blank-line-before-class
"D213", # multi-line-summary-second-line
]