config files updated for binary thermo data db

This commit is contained in:
Nicolas Kruse 2025-06-02 16:07:58 +02:00
parent b7aee74c5b
commit 1be0ad1cd0
3 changed files with 11 additions and 5 deletions

View File

@ -13,7 +13,9 @@ exclude =
build, build,
dist, dist,
.conda, .conda,
tests/autogenerated_* tests/autogenerated_*,
.venv,
venv
# Enable specific plugins or options # Enable specific plugins or options
# Example: Enabling flake8-docstrings # Example: Enabling flake8-docstrings
@ -21,4 +23,4 @@ select = C,E,F,W,D
# Specify custom error codes to ignore or enable # Specify custom error codes to ignore or enable
per-file-ignores = per-file-ignores =
tests/*: D tests/*: D

6
.gitignore vendored
View File

@ -9,4 +9,8 @@ __pycache__
.pytest_cache .pytest_cache
tests/autogenerated_*.py tests/autogenerated_*.py
docs/build/ docs/build/
docs/source/modules.md docs/source/modules.md
venv/
.venv/
thermo_data/combined_data.yaml
src/gaspype/data/therm_data.bin

View File

@ -13,7 +13,6 @@ classifiers = [
"Operating System :: OS Independent", "Operating System :: OS Independent",
] ]
dependencies = [ dependencies = [
"pyyaml>=6.0.1",
"numpy>2.0.0", "numpy>2.0.0",
"scipy>1.12.0", "scipy>1.12.0",
] ]
@ -30,7 +29,7 @@ build-backend = "setuptools.build_meta"
where = ["src"] where = ["src"]
[tool.setuptools.package-data] [tool.setuptools.package-data]
gaspype = ["data/*.yaml"] gaspype = ["data/therm_data.bin"]
[project.optional-dependencies] [project.optional-dependencies]
dev = [ dev = [
@ -39,6 +38,7 @@ dev = [
"pytest", "pytest",
"pandas", "pandas",
"cantera", "cantera",
"pyyaml>=6.0.1",
"types-PyYAML", "types-PyYAML",
"scipy-stubs" "scipy-stubs"
] ]