-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
60 lines (54 loc) · 1.44 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "neuropredict"
dynamic = ["version"]
description = "easy and standardized predictive analysis for biomarkers, neuroimaging, and beyond"
readme = "README.rst"
license = "Apache-2.0"
authors = [
{ name = "Pradeep Reddy Raamana", email = "raamana@gmail.com" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"confounds",
"matplotlib",
"nibabel",
"numpy",
"pyradigm>=0.6.dev1",
"scikit-learn",
"scipy",
"setuptools",
]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/raamana/neuropredict"
[project.scripts]
neuropredict = "neuropredict.__classify__:main"
neuropredict_classify = "neuropredict.__classify__:main"
neuropredict_regress = "neuropredict.__regress__:main"
np_classify = "neuropredict.__classify__:main"
np_regress = "neuropredict.__regress__:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "neuropredict/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/neuropredict",
]
exclude = [
"/.github",
"/docs",
]