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,
dist,
.conda,
tests/autogenerated_*
tests/autogenerated_*,
.venv,
venv
# Enable specific plugins or options
# Example: Enabling flake8-docstrings

4
.gitignore vendored
View File

@ -10,3 +10,7 @@ __pycache__
tests/autogenerated_*.py
docs/build/
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",
]
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"
]