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,
|
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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue