-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
42 lines (37 loc) · 1.12 KB
/
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=60",
"setuptools-scm>=8.0",
"wheel",
"Cython>=3.0",
"numpy",
]
[project]
name = "gridfill"
description = "Fill missing values in grids using iterative relaxation"
license = {text = "MIT"}
authors = [{name = "Andrew Dawson"}]
requires-python = ">=3.8"
dependencies = ["numpy"]
dynamic = ["readme", "version"]
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Atmospheric Science',
]
[tool.setuptools]
license-files = ["COPYING"]
include-package-data = true
[tool.setuptools.package-data]
gridfill_tests = ["data/*.npy"]
[tool.setuptools.dynamic]
readme = {file = "README.rst", content-type = "text/x-rst"}
[tool.setuptools_scm]
version_file = "gridfill/_version.py"