generated from ai2es/ai2es-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1011 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
38
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sharpness"
authors = [
{ "name" = "Lander Ver Hoef", "email" = "[email protected]" },
{ "name" = "Imme Ebert-Uphoff" },
{ "name" = "John Schreck" },
{ "name" = "Jason Stock" },
{ "name" = "Kyle Hilburn" },
{ "name" = "Maria J. Molina" },
]
description = "A package to evaluate image sharpness."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
dynamic = ["version"]
license = { file = "LICENSE" }
dependencies = [
"numpy",
"scipy",
"matplotlib",
"xarray",
"netcdf4",
"dask",
"pandas",
"scikit-learn",
"pyyaml",
"pytest",
"distributed",
"cartopy",
"tqdm",
"numba",
"cython",
"opencv-python",
"scikit-image",
]
[project.urls]
Repository = "https://github.com/ai2es/sharpness"
[tool.setuptools.dynamic]
version = { attr = "sharpness.__version__" }