From 383cba450f9ea97948b5c50b306e48ba5722a23f Mon Sep 17 00:00:00 2001
From: Felix Fischer <f.fischer@ifas.rwth-aachen.de>
Date: Fri, 17 Nov 2023 17:20:23 +0100
Subject: [PATCH] Add stubs file for constants

---
 src/scipy-stubs/constants.pyi | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 src/scipy-stubs/constants.pyi

diff --git a/src/scipy-stubs/constants.pyi b/src/scipy-stubs/constants.pyi
new file mode 100644
index 0000000..e8d4acd
--- /dev/null
+++ b/src/scipy-stubs/constants.pyi
@@ -0,0 +1,23 @@
+#!/usr/bin/env python3
+"""
+Stub file for sciypy-constants.
+"""
+pi: float
+golden: float
+golden_ratio: float
+N_A: float
+Avogadro: float
+Boltzmann: float
+gas_constant: float
+
+
+value(key: str) -> float: ...
+
+
+unit(key: str) -> str: ...
+
+
+precision(key: str) -> float: ...
+
+
+physical_constants: dict[str, tuple[float, str, float]]
-- 
GitLab