-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (43 loc) · 1.05 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
[build-system]
requires = [
"setuptools", "wheel"
]
build-backend = "setuptools.build_meta"
[project]
dynamic = ['version']
name = "skullTo3d"
maintainers = [{name = "SkullTo3d developers" }]
authors= [{name = "Macatools team"}]
description= "Pipeline for skull extraction for macaque/marmoset "
readme = {content-type = "text/markdown", file = "README.md"}
requires-python = ">= 3.10"
license = {text = "BSD-3-Clause"}
dependencies = [
"macapype",
"matplotlib"
]
[project.optional-dependencies]
# Dependencies for building the documentation
doc_deps = [
"sphinx",
"sphinx-gallery",
"sphinx_bootstrap_theme",
"numpydoc",
"sphinxcontrib-fulltoc"
]
# Dependencies for test
test_deps = [
"pytest",
"pytest-cov",
"codecov",
]
flake_deps = [
"flake8"
]
# real calls
test=["skullTo3d[test_deps, flake_deps]"]
doc=["skullTo3d[flake_deps, test_deps, doc_deps]"]
[project.scripts]
segment_skull = "workflows.segment_skull:main"
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default