-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.21 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "protocol"
dynamic = ["version"]
description = "generic framework to develop protocols with implementations in neuroscience"
readme = "README.rst"
license = "Apache-2.0"
requires-python = ">=3.8"
dependencies = [
"pydicom",
"numpy",
"lxml",
"nibabel"
]
authors = [
{ name = "Pradeep Reddy Raamana", email = "raamana@gmail.com" },
{ name = "Harsh Sinha", email = "harsh.sinha@pitt.edu" },
]
keywords = [
"protocol",
]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
test = [
"requests",
"pytest",
"hypothesis",
"flake8",
]
[project.urls]
Homepage = "https://github.com/raamana/protocol"
[tool.hatch.build]
include = [
"protocol/*.py",
"protocol/resources/*",
"protocol/tests/*",
"protocol/tests/resources/*",
]
exclude = [
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "protocol/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/protocol",
]
exclude = [
"/.github",
"/docs",
]
strict-naming = false