-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (65 loc) · 1.51 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools-scm>=7",
]
[tool.setuptools.packages.find]
where = ["src"]
include = [
"ipyfastscape",
"ipyfastscape.*",
]
[tool.setuptools_scm]
fallback_version = "9999"
[project]
name = "ipyfastscape"
dynamic = ["version"]
authors = [
{name = "Benoît Bovy", email = "[email protected]"},
]
maintainers = [
{name = "IpyFastscape contributors"},
]
license = {text = "BSD-3-Clause"}
description = "Interactive widgets for topographic data analysis and modelling in Jupyter notebooks"
keywords = ["fastscape", "xarray", "jupyter", "landscape", "topography"]
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
"xarray",
"ipywidgets",
"ipygany >=0.5.0"
]
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Repository = "https://github.com/fastscape-lem/ipyfastscape"
[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 = ["ipyfastscape"]