-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (36 loc) · 1014 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "compose-runner"
authors = [{name = "James Kent", email = "[email protected]"}]
description = "A package for running neurosynth-compose analyses"
readme = "README.md"
keywords = ["neurosynth-compose", "neurosynth", "neuroimaging", "meta-analysis"]
license = {text = "BSD 3-Clause License"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = ["nimare==0.2.2", "click", "nilearn==0.10.2"]
[project.urls]
Repository = "https://github.com/neurostuff/compose-runner"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-recording",
"vcrpy",
]
[project.scripts]
compose-run = "compose_runner.cli:cli"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "compose_runner/_version.py"
[tool.hatch.build]
exclude = [
"/.*",
]
[tool.flake8]
max-line-length = "99"