-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (34 loc) · 931 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (34 loc) · 931 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "sitkibex"
authors = [
{ name="Bradley Lowekamp", email="bioinformatics@niaid.nih.gov" },
]
description = "Image registration for iterative fluorescence microscopy"
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[project.scripts]
sitkibex = "sitkibex.cli:cli"
[project.optional-dependencies]
zarr= ["zarr"]
dev = [
"pytest",
"flake8",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
write_to = "sitkibex/_version.py"
local_scheme = "dirty-tag"
[tool.pytest.ini_options]
junit_family = "xunit2"
[tool.black]
line-length = 120