-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
38 lines (33 loc) · 1.02 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
# minimalist pyproject.toml
[project]
name = "pyfvtool"
version = "0.3.4"
authors = [
{ name="Ali A. Eftekhari", email="e.eftekhari@gmail.com" },
{ name="Gavin M. Weir"},
{ name="Martinus H. V. Werts"}
]
description = "Finite volume toolbox in Python"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics"
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.23.0",
"scipy>=1.11.0",
"matplotlib"
]
[project.urls]
"Homepage" = "https://github.com/FiniteVolumeTransportPhenomena/PyFVTool"
"Bug Tracker" = "https://github.com/FiniteVolumeTransportPhenomena/PyFVTool/issues"
[build-system]
requires = ["setuptools>=61.0", "numpy>=1.23.0", "scipy>=1.11.0", "matplotlib"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]