From 1be0ad1cd0934499d732d5835112dca46aa8dcd7 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Mon, 2 Jun 2025 16:07:58 +0200 Subject: [PATCH] config files updated for binary thermo data db --- .flake8 | 6 ++++-- .gitignore | 6 +++++- pyproject.toml | 4 ++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.flake8 b/.flake8 index b7c933b..45105cf 100644 --- a/.flake8 +++ b/.flake8 @@ -13,7 +13,9 @@ exclude = build, dist, .conda, - tests/autogenerated_* + tests/autogenerated_*, + .venv, + venv # Enable specific plugins or options # Example: Enabling flake8-docstrings @@ -21,4 +23,4 @@ select = C,E,F,W,D # Specify custom error codes to ignore or enable per-file-ignores = - tests/*: D \ No newline at end of file + tests/*: D diff --git a/.gitignore b/.gitignore index ef5ccc4..d588a6b 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,8 @@ __pycache__ .pytest_cache tests/autogenerated_*.py docs/build/ -docs/source/modules.md \ No newline at end of file +docs/source/modules.md +venv/ +.venv/ +thermo_data/combined_data.yaml +src/gaspype/data/therm_data.bin diff --git a/pyproject.toml b/pyproject.toml index 0c36b0c..a494b59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,6 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "pyyaml>=6.0.1", "numpy>2.0.0", "scipy>1.12.0", ] @@ -30,7 +29,7 @@ build-backend = "setuptools.build_meta" where = ["src"] [tool.setuptools.package-data] -gaspype = ["data/*.yaml"] +gaspype = ["data/therm_data.bin"] [project.optional-dependencies] dev = [ @@ -39,6 +38,7 @@ dev = [ "pytest", "pandas", "cantera", + "pyyaml>=6.0.1", "types-PyYAML", "scipy-stubs" ]