forked from funkelab/funlib.persistence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 906 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
[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.7"
classifiers = ["Programming Language :: Python :: 3"]
keywords = []
dependencies = [
"funlib.geometry",
"networkx",
"zarr",
"pymongo",
"numpy",
"h5py",
"psycopg2-binary",
]
[tool.setuptools.dynamic]
version = { attr = "funlib.persistence.__version__" }
[project.optional-dependencies]
dev = ['coverage>=5.0.3', 'pytest', 'black', 'mypy', 'types-psycopg2']
[tool.black]
target_version = ['py39', 'py310', 'py311']