-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.4 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"setuptools_scm>=8",
]
[tool.setuptools.packages.find]
include = [
"orographic_precipitation",
"orographic_precipitation.*",
]
[tool.setuptools_scm]
fallback_version = "9999"
[project]
name = "orographic_precipitation"
dynamic = ["version"]
authors = [
{name = "Raphael Lange"},
]
maintainers = [
{name = "Fastscape contributors"},
]
license = {text = "MIT"}
description = "Linear Theory of Orographic Precipitation"
keywords = ["simulation", "toolkit", "modeling", "landscape", "geomorphology"]
readme = "README.rst"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
"xarray-simlab >= 0.5.0",
"numpy",
"fastscape"
]
[project.urls]
Repository = "https://github.com/fastscape-lem/orographic-precipitation"
[tool.black]
line-length = 100
[tool.ruff]
# E402: module level import not at top of file
# E501: line too long - let black worry about that
# E731: do not assign a lambda expression, use a def
ignore = [
"E402",
"E501",
"E731",
]
select = [
"F", # Pyflakes
"E", # Pycodestyle
"W",
"I", # isort
"UP", # Pyupgrade
]
exclude = [".eggs", "doc"]
target-version = "py39"
[tool.ruff.isort]
known-first-party = ["orographic_precipitation"]