-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (60 loc) · 1.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "contarg"
description = "Python package implementing/wrapping connectivity based rTMS targeting methods."
readme = "README.md"
requires-python = ">=3.8"
license = { text="CC)" }
authors = [
{ name="Dylan Nielson", email="[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
dependencies = [
'numpy >= 1.22.0',
'pandas >= 1.5.3',
'joblib >= 1.2.0',
'nilearn >= 0.10.0 ',
'scikit-learn >= 1.2.1',
'scipy >= 1.10.0',
'pybids == 0.16.1',
'click >= 8.1.3',
'niworkflows >= 1.7.1',
'six >= 1.16.0',
'templateflow >= 23.0.0',
'kneed >= 0.8.2',
'networkx >= 2.8.5',
'statsmodels >= 0.14.0',
'mixedvines'
]
[project.optional-dependencies]
test = [
'datalad',
'pytest'
]
dev = [
'black ~= 23.1.0',
]
[project.urls]
"Homepage" = "https://github.com/nih-fmrif/contarg"
[project.scripts]
contarg = "contarg.cli.cli:contarg"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "contarg/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
[tool.hatch.build.targets.wheel]
packages = ["contarg"]
exclude = [
"contarg/test/data"
]