-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.02 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "compose-runner"
authors = [{name = "James Kent", email = "jamesdkent21@gmail.com"}]
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.16.0", "click", "sentry-sdk", "numpy"]
[project.urls]
Repository = "https://github.com/neurostuff/compose-runner"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-recording",
"vcrpy",
]
aws = [
"boto3",
]
[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"