forked from kuchtact/WiPPLPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (45 loc) · 928 Bytes
/
pyproject.toml
File metadata and controls
47 lines (45 loc) · 928 Bytes
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.2.0",
"setuptools-scm >= 6.3.2",
"wheel >= 0.37.0",
]
[project]
name = "wipplpy"
description = "Python package for the Wisconsin Plasma Physics Laboratory"
dynamic = [
"version",
]
requires-python = ">=3.9"
dependencies = [
"numpy >= 1.24.0",
]
[project.optional-dependencies]
tests = [
"pytest >= 8.0.0",
"nox >= 2024.4.15",
]
[tool.codespell]
skip = "*.png"
ignore-words-list = """
ned,
tru"""
[tool.ruff]
target-version = "py39"
lint.extend-select = [
"A", # flake8-builtins
"C4", # flake8-comprehensions
"FBT003", # flake8-boolean-trap
"ISC", # flake8-implicit-str-concat
"PLC", # pylint convention
"PLE", # pylint errors
"PLR", # pylint refactorings
"PLW", # pylint warnings
"SIM", # flake8-simplify
"UP", # pyupgrade
"RUF200", # invalid-pyproject-toml
]
lint.ignore = [
"E501", # line-too-long
]