This commit is contained in:
François Boulogne 2025-06-25 12:16:11 +02:00
commit 82eff06057
141 changed files with 10910 additions and 0 deletions

28
optifik.egg-info/PKG-INFO Normal file
View file

@ -0,0 +1,28 @@
Metadata-Version: 2.4
Name: optifik
Version: 0.1.0
Summary: Compute film thickness from interferometry
Author-email: François Boulogne <francois.boulogne@cnrs.fr>, Victor Ziapkoff <victor.ziapkoff@universite-paris-saclay.fr>
License-Expression: GPL-3.0-or-later
Project-URL: Homepage, https://github.com/votrecompte/votreprojet
Project-URL: Documentation, https://github.com/votrecompte/votreprojet#readme
Project-URL: Repository, https://github.com/sciunto-org/optifik
Project-URL: Issues, https://github.com/sciunto-org/optifik/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.10.0
Requires-Dist: scipy>=1.1.0
Requires-Dist: matplotlib>=1.3.1
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: bumpver; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx>=7.0; extra == "docs"
Requires-Dist: sphinx-rtd-theme>=2.0; extra == "docs"
Requires-Dist: numpydoc>=1.6; extra == "docs"
Requires-Dist: myst-parser>=2.0; extra == "docs"
Requires-Dist: sphinx-autodoc-typehints>=2.0; extra == "docs"
Requires-Dist: sphinx-copybutton>=0.5; extra == "docs"
Requires-Dist: sphinx-design>=0.5; extra == "docs"
Requires-Dist: matplotlib>=3.0; extra == "docs"

View file

@ -0,0 +1,26 @@
README.md
pyproject.toml
optifik/__init__.py
optifik/analysis.py
optifik/fft.py
optifik/io.py
optifik/minmax.py
optifik/scheludko.py
optifik/utils.py
optifik.egg-info/PKG-INFO
optifik.egg-info/SOURCES.txt
optifik.egg-info/dependency_links.txt
optifik.egg-info/requires.txt
optifik.egg-info/top_level.txt
tests/test_SV1.py
tests/test_SV2o0.py
tests/test_SV2o1.py
tests/test_SV2o2.py
tests/test_SV2o3.py
tests/test_SV2o4.py
tests/test_SV2o5.py
tests/test_fft.py
tests/test_io.py
tests/test_minmax.py
tests/test_scheludko.py
tests/test_thickness.py

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,18 @@
numpy>=1.10.0
scipy>=1.1.0
matplotlib>=1.3.1
[dev]
pytest
pytest-cov
bumpver
[docs]
sphinx>=7.0
sphinx-rtd-theme>=2.0
numpydoc>=1.6
myst-parser>=2.0
sphinx-autodoc-typehints>=2.0
sphinx-copybutton>=0.5
sphinx-design>=0.5
matplotlib>=3.0

View file

@ -0,0 +1 @@
optifik