-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
47 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pytools"
authors = [
{ name="Bradley Lowekamp", email="bioinformatics@niaid.nih.gov" },
]
description = "Tools for generating and working with Neuroglancer precompute format."
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[tool.setuptools]
packages = ["pytools"]
[project.urls]
homepage = "https://www.niaid.nih.gov/research/bioinformatics-computational-biosciences-branch"
source = "https://github.com/niaid/tomojs-pytools"
documentation = "https://niaid.github.io/tomojs-pytools/"
[tool.pytest.ini_options]
minversion = "6.0"
junit_family="xunit2"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 120
exclude = '(docs/conf\.py)|venv*'
[tool.setuptools_scm]
write_to = "pytools/_version.py"
local_scheme = "dirty-tag"
[project.scripts]
zarr_rechunk = "pytools.zarr_rechunk:main"
zarr_info = "pytools.zarr_info:main"
zarr_build_multiscales = "pytools.zarr_build_multiscales:main"