-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
53 lines (46 loc) · 1.08 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
47
48
49
50
51
52
53
[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 = "[email protected]" },
{ name = "Jan Funke", email = "[email protected]" },
]
dynamic = ['version']
requires-python = ">=3.10"
classifiers = ["Programming Language :: Python :: 3"]
keywords = []
dependencies = [
"funlib.geometry",
"networkx",
"zarr",
"pymongo",
"numpy",
"h5py",
"psycopg2-binary",
"fsspec",
"toml",
"dask",
"pydantic",
]
[tool.setuptools.dynamic]
version = { attr = "funlib.persistence.__version__" }
[project.optional-dependencies]
dev = [
'coverage>=5.0.3',
'pytest',
'pytest-mock',
'black',
'mypy',
'types-psycopg2',
'types-toml',
]
[tool.ruff]
# pyflakes, pycodestyle, isort
lint.select = ["F", "W", "I001"]
[tool.setuptools.package-data]
"funlib.persistence" = ["py.typed"]