-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
36 lines (28 loc) · 916 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
[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 = "[email protected]" },
{ name = "William Patton", email = "[email protected]" },
{ name = "Caroline Malin-Mayor" },
]
license = { text = "MIT" }
readme = "README.md"
dynamic = ["version"]
classifiers = ["Programming Language :: Python :: 3"]
keywords = []
requires-python = ">=3.7"
dependencies = []
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "mypy", "ruff"]
[tool.setuptools.dynamic]
version = { attr = "funlib.geometry.__version__" }
[tool.black]
target_version = ['py39', 'py310', 'py311']
[tool.setuptools.packages.find]
include = ["funlib.geometry*"]
[tool.setuptools.package-data]
"funlib.geometry" = ["py.typed"]