-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (38 loc) · 915 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 = "mrivis"
dynamic = ["version"]
description = "Intuitive high-level classes for visualization of medical imaging data"
readme = "README.rst"
license = "Apache-2.0"
authors = [
{ name = "Pradeep Reddy Raamana", email = "[email protected]" },
]
keywords = [
"mrivis",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"matplotlib",
"nibabel",
"numpy",
"scipy",
]
[project.urls]
Homepage = "https://github.com/raamana/mrivis"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "mrivis/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/mrivis",
]