-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.31 KB
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
51
52
53
54
55
56
57
58
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
name = "funlib.persistence"
description = "Interfaces for data (arrays and graphs) and storage formats (databases and file formats)"
license = { text = "MIT" }
readme = "README.md"
authors = [
{ name = "William Patton", email = "pattonw@hhmi.org" },
{ name = "Jan Funke", email = "funkej@hhmi.org" },
]
dynamic = ['version']
requires-python = ">=3.11"
classifiers = ["Programming Language :: Python :: 3"]
keywords = []
dependencies = [
"zarr>=3,<4",
"iohub>=0.3.0a5",
"funlib.geometry>=0.3.0",
"networkx>=3.0.0",
"pymongo>=4.0.0",
"numpy>=2.0.0",
"pydantic>=2.0.0",
"dask>=2024.0.0",
"toml>=0.10.0",
"psycopg2-binary>=2.9.11",
]
[tool.setuptools.dynamic]
version = { attr = "funlib.persistence.__version__" }
[project.optional-dependencies]
dev = [
"coverage>=7.7.1",
"pytest>=8.3.5",
"pytest-mock>=3.14.0",
"ruff>=0.11.2",
"ty>=0.0.16",
"types-networkx",
"types-psycopg2",
"types-toml",
]
[tool.ruff]
# pyflakes, pycodestyle, isort
lint.select = ["F", "W", "I001"]
[tool.setuptools.package-data]
"funlib.persistence" = ["py.typed"]
# # module specific overrides
[[tool.mypy.overrides]]
module = ["zarr.*", "iohub.*"]
ignore_missing_imports = true