-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "pyremap"
dynamic = ["version"]
authors = [
{ name="Xylar Asay-Davis", email="xylar@lanl.gov" },
{ name="Althea Denlinger" },
]
description = "Python remapping tools for climate and earth system models"
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
# these are only for searching/browsing projects on PyPI
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"dask",
"netcdf4",
"numpy",
"pyproj",
"scipy",
"xarray>=0.10.0",
]
[tool.isort]
multi_line_output = "3"
include_trailing_comma = true
force_grid_wrap = "0"
use_parentheses = true
line_length = "79"
[tool.mypy]
python_version = "3.10"
check_untyped_defs = true
ignore_missing_imports = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
[build-system]
requires = ["setuptools>=60"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["ci*", "docs*", "licenses*", "examples*"]
[tool.setuptools.dynamic]
version = { attr = "pyremap.__version__" }
[project.urls]
Documentation = "https://mpas-dev.github.io/pyremap/stable/"
"Bug Tracker" = "https://github.com/MPAS-Dev/pyremap/issues"