-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
75 lines (67 loc) · 2.16 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
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "waves"
authors = [
{name = "Kyle Brindley", email = "[email protected]"},
{name = "Prabhu Khalsa", email = "[email protected]"},
{name = "Thomas Roberts", email = "[email protected]"},
{name = "Sergio Cordova", email = "[email protected]"},
{name = "Matthew Fister", email = "[email protected]"},
{name = "Scott Ouellette", email = "[email protected]"}
]
description = "WAVES Analysis for Verified Engineering Simulations"
readme = "README.rst"
requires-python = ">=3.9"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
dynamic = ["version"]
dependencies = [
"h5netcdf",
"h5py",
"matplotlib",
"networkx",
"numpy",
"pyyaml",
"salib >=1",
"scipy >=1.7",
"scons >=4",
"xarray"
]
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
[project.scripts]
odb_extract = "waves._abaqus.odb_extract:main"
waves = "waves._main:main"
[project.urls]
homepage = "https://github.com/lanl-aea/waves"
documentation = "https://github.com/lanl-aea/waves"
repository = "https://github.com/lanl-aea/waves"
changelog = "https://lanl-aea.github.io/waves/changelog.html"
[tool.setuptools_scm]
write_to = "waves/_version.py"
[tool.pytest.ini_options]
markers = [
"systemtest: marks system tests, e.g. the tutorials",
"require_third_party: marks system tests that require third-party software command line calls",
]
addopts = "--ignore='waves/modsim_template/' --ignore='modsim_template/' --ignore='waves/modsim_template_2/' --ignore='modsim_template_2/' --ignore='waves/tutorials/' --ignore='tutorials/' --tb=long --showlocals --failed-first --strict-markers -m 'not systemtest'"
[tool.mypy]
disable_error_code = "import-untyped"
exclude = [
"modsim_template",
"tutorials",
"tests"
]
packages = ["waves"]