-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
60 lines (53 loc) · 1.27 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 = "graynet"
dynamic = ["version"]
description = "Individualized single-subject networks from T1 mri features such as cortical thickness and gray matter density. "
readme = "README.md"
license = ""
authors = [
{ name = "Pradeep Reddy Raamana", email = "[email protected]" },
]
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.6",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"hiwenet",
"medpy",
"networkx",
"nibabel",
"numpy",
"pyradigm",
"scipy",
]
[project.urls]
Homepage = "https://github.com/raamana/graynet"
[project.scripts]
graynet = "graynet.__main__:main"
[tool.hatch.build]
include = [
"graynet/*.py",
"graynet/atlases/*",
"graynet/resources/*",
]
exclude = [
"graynet/tests/*",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "graynet/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/graynet",
]