-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 912 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 912 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
[build-system]
requires = [
"setuptools >= 65",
"setuptools_scm[toml] >= 6.2",
"wheel >= 0.29.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "epydeck"
readme = "README.md"
authors = [
{ name = "Peter Hill", email = "peter.hill@york.ac.uk" },
{ name = "Joel Adams", email = "joel.adams@york.ac.uk" },
]
license = { file = "LICENCE.md" }
requires-python = ">=3.9"
dynamic = ["version"]
description = "An EPOCH plasma PIC code input file (deck) reader/writer."
[project.optional-dependencies]
docs = [
"sphinx >= 5.3",
"sphinx_autodoc_typehints >= 1.19",
"sphinx-book-theme >= 0.4.0rc1",
"sphinx-argparse-cli >= 1.10.0",
"sphinx-inline-tabs",
]
tests = ["pytest >= 3.3.0"]
[tool.setuptools_scm]
write_to = "src/epydeck/_version.py"
[tool.ruff]
line-length = 88
lint.ignore = ["E501"]
[tool.uv]
cache-keys = [{ file = "pyproject.toml" }, { git = true }]