-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
93 lines (84 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8,<4"]
[project]
name = "roocs_grids"
keywords = ["roocs_grids", "regrid", "grid", "interpolate", "cmip"]
authors = [
{name = "Ag Stephens", email = "[email protected]"},
{name = "Martin Schupfner", email = "[email protected]"}
]
maintainers = [
{name = "Carsten Ehbrecht", email = "[email protected]"},
{name = "Trevor James Smith", email = "[email protected]"}
]
license = {file = "LICENSE"}
python_requires = ">=3.8.0"
dynamic = ["description", "version"]
dependencies = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.optional-dependencies]
dev = [
"black",
"bump2version",
"clisops",
"isort",
"pytest>=7.0.0",
"ruff>=0.1.0",
"xarray"
]
[project.urls]
"Source" = "https://github.com/roocs/roocs-grids/"
"Changelog" = "https://github.com/roocs/roocs-grids/blob/main/HISTORY.rst"
"Issue tracker" = "https://github.com/roocs/roocs-grids/issues"
"About ROOCS" = "https://roocs.github.io/"
[tool.black]
target-version = [
"py38",
"py39",
"py310",
"py311"
]
[tool.flit.sdist]
include = [
"AUTHORS.rst",
"HISTORY.rst",
"LICENSE",
"README.rst",
"tests/*.py"
]
exclude = [
"**/*.py[co]",
"**/__pycache__",
".*",
"scripts/*"
]
[tool.isort]
profile = "black"
py_version = 38
[tool.ruff]
src = ["roocs_grids"]
line-length = 88
target-version = "py38"
ignore = ["E501"]
[tool.ruff.format]
line-ending = "auto"
[tool.ruff.isort]
known-first-party = ["roocs_grids"]
lines-after-imports = 1