Skip to content
Snippets Groups Projects
pyproject.toml 1018 B
Newer Older
Malte Nyhuis's avatar
Malte Nyhuis committed
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "ntrfc"
Malte Nyhuis's avatar
Malte Nyhuis committed
version = "0.2.0"
Malte Nyhuis's avatar
Malte Nyhuis committed
description = "Numerical Test Rig for Cascades. A workflows-library for CFD analysis of cascade-flows"
authors = [
    {name = "Malte Nyhuis", email = "nyhuis@tfd.uni-hannover.de"}
]
readme = "README.rst"
requires-python = ">=3.10"
license = { text = "MIT License" }
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Natural Language :: English",
Malte Nyhuis's avatar
Malte Nyhuis committed
    "Programming Language :: Python :: 3.11"
Malte Nyhuis's avatar
Malte Nyhuis committed
]
keywords = ["ntrfc"]

Malte Nyhuis's avatar
Malte Nyhuis committed
# i want to read the dependencies from requirements.txt

dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
Malte Nyhuis's avatar
Malte Nyhuis committed


[project.optional-dependencies]
test = ["pytest>=3"]

[project.scripts]
ntrfc = "ntrfc.cli:main"

[tool.setuptools.package-data]
ntrfc = ["data/*"]

[tool.setuptools.packages.find]
include = ["ntrfc", "ntrfc.*"]