-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
71 lines (63 loc) · 1.46 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools-scm>=7",
]
[tool.setuptools.packages.find]
include = [
"fastscape",
"fastscape.*",
]
[tool.setuptools_scm]
fallback_version = "9999"
[project]
name = "fastscape"
dynamic = ["version"]
authors = [
{name = "Benoît Bovy", email = "[email protected]"},
]
maintainers = [
{name = "Fastscape contributors"},
]
license = {text = "BSD-3-Clause"}
description = "A fast, versatile and user-friendly landscape evolution model"
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",
"numba",
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Documentation = "https://fastscape.readthedocs.io"
Repository = "https://github.com/fastscape-lem/fastscape"
[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 = ["fastscape"]