-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (42 loc) · 922 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
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "imageryclient"
dynamic = ["version"]
description = "Front end tools for composite images for EM connectomics"
readme = "README.md"
license = ""
authors = [
{ name = "Casey Schneider-Mizell", email = "[email protected]" },
]
dependencies = [
"caveclient",
"cloud-volume >= 8.0.0",
"fastremap",
"imageio",
"numpy",
"Pillow",
"scipy",
"seaborn",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/ceesem/ImageryClient"
[tool.hatch.version]
path = "imageryclient/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/imageryclient",
]
[tool.hatch.envs.docs]
python = "3.11"
dependencies = [
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-glightbox",
"mkdocs-caption",
]
[tool.hatch.envs.docs.scripts]
docs_test = "mkdocs serve -v"
build = "mkdocs build"