forked from capytaine/capytaine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 1.38 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = "capytaine"
description = "Python BEM solver for linear potential flow, based on Nemoh"
authors = [{name = "Matthieu Ancellin", email = "[email protected]"}]
requires-python = ">=3.8"
dependencies = ["numpy", "scipy", "pandas>=1.3", "xarray", "rich"]
urls = {repository = "https://github.com/capytaine/capytaine"}
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Fortran",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering",
]
scripts = {capytaine = "capytaine.ui.cli:main"}
dynamic = ['version']
[project.optional-dependencies]
optional = ["matplotlib", "joblib>=1.3", "meshio", "quadpy-gpl", "bemio @ https://github.com/mancellin/bemio/archive/fa3a6d3d4b0862491c3723919ec8ee45cc7d055a.zip"]
build = ["numpy", "ninja", "meson-python", "charset-normalizer"]
test = ["pytest"]
docs = ["sphinx", "sphinx-toolbox", "sphinxcontrib-proof", "sphinxcontrib-mermaid"]
[build-system]
build-backend = 'mesonpy'
requires = ["meson-python", "oldest-supported-numpy", "charset-normalizer"]
[tool.cibuildwheel]
test-requires = ["pytest"]
test-command = "pytest {project}/pytest/"
[tool.ruff]
select = ["E", "F", "W", "NPY"]
ignore = ["E501"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401"]