-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (55 loc) · 1.41 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "FPVgen"
version = "0.1.0"
description = "A software tool for generating flamelet tables for combustion simulations."
authors = [
{ name = "Laboratory of Fluids in Complex Environments"},
{ name = "Matthew Bonanni", email = "[email protected]" }
]
license = { text = "MIT" }
readme = "README.md"
keywords = ["fpv", "flamelet", "automation"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8,<3.13"
dependencies = [
"numpy",
"scipy",
"matplotlib",
"pandas",
"h5py",
"tomli",
"cantera >=3.1.0a4"
]
[project.urls]
Homepage = "https://github.com/IhmeGroup/FPVgen"
Issues = "https://github.com/IhmeGroup/FPVgen/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "fpvgen.__version__" }
[project.scripts]
generate_table = "scripts.generate_table:main"
assemble_table = "scripts.assemble_table:main"
plot_flamelets = "scripts.plot_flamelets:main"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"flake8",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v --tb=short"
testpaths = ["tests"]
[tool.black]
line-length = 120
target-version = ["py312"]