-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
49 lines (44 loc) · 987 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
49
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
name = "daisy"
description = "Blockwise task scheduler for processing large volumetric data."
version = "1.2.2"
license = {text = "MIT"}
readme = "README.md"
authors = [
{name = "William Patton", email = "pattonw@hhmi.org"},
{name = "Jan Funke", email = "funkej@janelia.hhmi.org"},
{name = "Tri M. Nguyen", email = "tri_nguyen@hms.harvard.edu"},
{name = "Caroline Malin-Mayor", email = "malinmayorc@janelia.hhmi.org"}
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
keywords = []
dependencies = [
"numpy",
"tornado>=5",
"tqdm",
"funlib.math",
"funlib.geometry",
"dill",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"mypy",
"filelock",
]
# # module specific overrides
[[tool.mypy.overrides]]
module = [
"funlib.*",
"tqdm.*",
"pkg_resources.*",
"dill",
]
ignore_missing_imports = true