-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
51 lines (45 loc) · 924 Bytes
/
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
[project]
name = "perform"
version = "0.2.1"
authors = [
{name = "Christopher R. Wentland"},
{email = "[email protected]"}
]
description = "One-dimension reacting flow for ROM prototyping"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
dependencies = [
"numpy>=1.16.6",
"scipy>=1.1.0",
"matplotlib>=2.1.0",
"packaging",
"gdown",
]
[project.urls]
documentation = "https://perform.readthedocs.io"
repository = "https://github.com/cwentland0/perform"
[project.scripts]
perform = "perform.driver:main"
[build-system]
requires = ["setuptools >= 64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
target-version = ['py38']
check = true
diff = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"pass",
"print",
"sleep",
"return",
"assert",
"raise ValueError",
"def main()",
]
omit = [
"*/perform/driver.py",
]