-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 830 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 830 Bytes
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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]
[project]
name = "funlib.geometry"
description = "A package for Coordinates, Rois and common operations in Coordinate spaces."
authors = [
{ name = "Jan Funke", email = "funkej@hhmi.org" },
{ name = "William Patton", email = "pattonw@hhmi.org" },
{ name = "Caroline Malin-Mayor" },
]
license = { text = "MIT" }
readme = "README.md"
dynamic = ["version"]
classifiers = ["Programming Language :: Python :: 3"]
keywords = []
requires-python = ">=3.10"
dependencies = []
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.1",
"ty>=0.0.17",
]
[tool.setuptools.dynamic]
version = { attr = "funlib.geometry.__version__" }
[tool.setuptools.package-data]
"funlib.geometry" = ["py.typed"]