config files updated for binary thermo data db
This commit is contained in:
parent
b7aee74c5b
commit
1be0ad1cd0
6
.flake8
6
.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
|
||||
tests/*: D
|
||||
|
|
|
@ -9,4 +9,8 @@ __pycache__
|
|||
.pytest_cache
|
||||
tests/autogenerated_*.py
|
||||
docs/build/
|
||||
docs/source/modules.md
|
||||
docs/source/modules.md
|
||||
venv/
|
||||
.venv/
|
||||
thermo_data/combined_data.yaml
|
||||
src/gaspype/data/therm_data.bin
|
||||
|
|
|
@ -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"
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue