-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 940 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]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "imagebenchmarks"
version = "0.0.1"
description = "Image benchmarks for the python validation engine."
authors = [
{ name = "scepticalrabbit", email = "thescepticalrabbit@gmail.com" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: MIT",
"Operating System :: OS Independent",
]
requires-python = "==3.11.*"
dependencies = [
"numpy<2.0.0",
"dill>=0.3.9",
]
[project.urls]
"Repository" = "https://github.com/Computer-Aided-Validation-Laboratory/imagebenchmarks"
"Issue Tracker" = "https://github.com/Computer-Aided-Validation-Laboratory/imagebenchmarks/issues"
[tool.setuptools.package-data]
"imagebenchmarks.simulations" = ["*.e","*.tiff"]
"imagebenchmarks.benchmarks" = ["*.dill",]
[tool.setuptools.packages.find]
where = ["src"]