-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.08 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "cfsem"
version = "2.1.0"
description = "Quasi-steady electromagnetics including filamentized approximations, Biot-Savart, and Grad-Shafranov."
authors = [{author = "Commonwealth Fusion Systems", email = "[email protected]"}]
requires-python = ">=3.9, <3.13"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
"numpy >= 2",
"interpn >= 0.2.3",
]
license = "MIT"
[project.optional-dependencies]
dev = [
# Tests
"pytest >= 7.1.3",
"coverage >= 6.5.0",
"ruff >= 0.6.2",
"pyright >= 1.1.331",
"scipy >= 1.8",
# Docs
"mkdocs >= 1.6.0",
"mkdocs-material >= 9.5.25",
"mkdocstrings[python] >= 0.25.1",
# Examples
"matplotlib >= 3.9",
]
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "cfsem._cfsem"
[tool.ruff]
target-version = "py311"
[tool.coverage.report]
fail_under = 100