-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (83 loc) · 2.5 KB
/
pyproject.toml
File metadata and controls
95 lines (83 loc) · 2.5 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=69", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quantumhall_matrixelements"
description = "Landau-level plane-wave form factors and exchange kernels for quantum Hall systems."
readme = "README.md"
authors = [
{ name = "Tobias Wolf", email = "public@wolft.xyz" },
{ name = "Sparsh Mishra" }
]
license = { text = "MIT" }
requires-python = ">=3.11"
keywords = ["quantum Hall", "matrix elements", "form factors", "exchange kernels", "Landau levels"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"numpy>=1.26",
"scipy>=1.11",
"hankel>=1.2",
"numba>=0.59"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.5.0",
"mypy>=1.10",
"mpmath>=1.3",
"build",
"twine"
]
docs = [
"furo>=2024.8.6",
"matplotlib>=3.8",
"myst-parser>=3.0",
"sphinx>=8.0",
"sphinx-copybutton>=0.5",
"sphinx-gallery>=0.18"
]
[project.urls]
Homepage = "https://github.com/skilledwolf/quantumhall_matrixelements"
Issues = "https://github.com/skilledwolf/quantumhall_matrixelements/issues"
Documentation = "http://tobiaswolf.net/quantumhall_matrixelements/"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
fallback_version = "0.0"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
extend-exclude = ["examples", "playground", "validation", "*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM", "NPY", "PERF"]
ignore = ["E203"]
[tool.ruff.lint.isort]
known-first-party = ["quantumhall_matrixelements"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q --cov=quantumhall_matrixelements --cov-report=term-missing"
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"release: marks release-tier validation tests and frozen-reference checks",
]
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
files = ["src/quantumhall_matrixelements"]
exclude = "^(docs/|playground/|tests/|validation/|examples/|build/|dist/|src/quantumhall_matrixelements\\.egg-info/)"
[tool.coverage.run]
branch = true
source = ["quantumhall_matrixelements"]