From 468f2f44986c4e8e36ab34d9d18432407cb0d2a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Wed, 25 Jun 2025 11:32:41 +0200 Subject: [PATCH] clean --- pyproject.toml~ | 63 ------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 pyproject.toml~ diff --git a/pyproject.toml~ b/pyproject.toml~ deleted file mode 100644 index 281d746..0000000 --- a/pyproject.toml~ +++ /dev/null @@ -1,63 +0,0 @@ -[project] -name = "optifik" -version = "0.1.2" -description = "Compute film thickness from interferometry" -authors = [ - { name = "François Boulogne", email = "francois.boulogne@cnrs.fr" }, - { name = "Victor Ziapkoff", email = "victor.ziapkoff@universite-paris-saclay.fr" }, -] -license = "GPL-3.0-or-later" -readme = "README.md" -requires-python = ">=3.8" -dependencies = [ - "numpy>=1.10.0", - "scipy>=1.1.0", - "matplotlib>=1.3.1", -] - -[tool.setuptools] -packages = ["optifik"] - - -[project.urls] -Homepage = "https://github.com/votrecompte/votreprojet" -Documentation = "https://github.com/votrecompte/votreprojet#readme" -Repository = "https://github.com/sciunto-org/optifik" -Issues = "https://github.com/sciunto-org/optifik/issues" - - -[project.optional-dependencies] -dev = [ - "pytest", - "pytest-cov", - "poetry" -] - -docs = [ - "sphinx>=7.0", - "sphinx-rtd-theme>=2.0", - "numpydoc>=1.6", - "myst-parser>=2.0", # Markdown + reStructuredText - "sphinx-autodoc-typehints>=2.0", - "sphinx-copybutton>=0.5", - "sphinx-design>=0.5", - #"matplotlib>=3.0", # For plots in docstring -] - -[tool.setuptools.package-data] -optifik = ["data/*"] - -[tool.pytest.ini_options] -#addopts = "-v --tb=short --disable-warnings" -testpaths = ["tests"] -python_files = "test_*.py" -pythonpath = ["."] - -[build-system] -requires = ["setuptools>=61.0"] -build-backend = "setuptools.build_meta" - -[tool.coverage.run] -source = ["optifik"] -omit = ["optifik/tests/*"] -