-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (45 loc) · 947 Bytes
/
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
[project]
name = "pump"
description = "PUMP project analysis"
authors = [
{ name="Deepak Cherian", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
dynamic = ["version"]
[build-system]
requires = ["setuptools", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pump"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "pump/_version.py"
versionfile_build = "pump/_version.py"
tag_prefix = "v"
[tool.ruff]
target-version = "py39"
builtins = ["ellipsis"]
# 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 = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# isort
"I",
# Pyupgrade
"UP",
]
[tool.ruff.isort]
known-first-party = ["xarray"]