2025-05-09 11:59:20 +00:00
|
|
|
[project]
|
|
|
|
name = "gaspype"
|
2025-05-09 13:34:21 +00:00
|
|
|
version = "1.0.1"
|
2025-05-09 11:59:20 +00:00
|
|
|
authors = [
|
|
|
|
{ name="Nicolas Kruse", email="nicolas.kruse@dlr.de" },
|
|
|
|
]
|
|
|
|
description = "Performant library for thermodynamic calculations"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.10"
|
2025-05-09 13:21:06 +00:00
|
|
|
license = "MIT"
|
2025-05-09 11:59:20 +00:00
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"numpy>2.0.0",
|
|
|
|
"scipy>1.12.0",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://github.com/DLR-Institute-of-Future-Fuels/gaspype"
|
|
|
|
Issues = "https://github.com/DLR-Institute-of-Future-Fuels/gaspype/issues"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
2025-06-02 14:07:58 +00:00
|
|
|
gaspype = ["data/therm_data.bin"]
|
2025-05-09 11:59:20 +00:00
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"flake8",
|
|
|
|
"mypy",
|
|
|
|
"pytest",
|
|
|
|
"pandas",
|
2025-05-09 13:34:21 +00:00
|
|
|
"cantera",
|
2025-06-02 14:07:58 +00:00
|
|
|
"pyyaml>=6.0.1",
|
2025-05-09 13:34:21 +00:00
|
|
|
"types-PyYAML",
|
2025-06-06 07:06:33 +00:00
|
|
|
"scipy-stubs",
|
|
|
|
"matplotlib"
|
2025-05-09 11:59:20 +00:00
|
|
|
]
|
2025-06-04 16:00:28 +00:00
|
|
|
doc_build = [
|
|
|
|
"sphinx",
|
2025-06-06 07:06:33 +00:00
|
|
|
"pydata_sphinx_theme",
|
2025-06-04 16:00:28 +00:00
|
|
|
"sphinx-autodoc-typehints",
|
|
|
|
"myst-parser",
|
|
|
|
"pandas",
|
|
|
|
"matplotlib",
|
|
|
|
"ipykernel",
|
|
|
|
"jupyter",
|
|
|
|
"nbconvert",
|
|
|
|
"notedown"
|
|
|
|
]
|
2025-05-09 11:59:20 +00:00
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
files = ["src"]
|
|
|
|
strict = true
|
|
|
|
warn_return_any = true
|
|
|
|
warn_unused_configs = true
|
|
|
|
check_untyped_defs = true
|
|
|
|
no_implicit_optional = true
|
|
|
|
show_error_codes = true
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "6.0"
|
|
|
|
addopts = "-ra -q"
|
|
|
|
testpaths = ["tests"]
|
|
|
|
pythonpath = ["src"]
|