forked from ansys/pydyna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
101 lines (91 loc) · 2.79 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ansys-dyna-core"
version = "0.4.dev0"
description = "Python interface to LS-DYNA Service"
readme = "README.rst"
requires-python = ">=3.9,<4"
license = { file = "LICENSE" }
authors = [{ name = "ANSYS, Inc.", email = "[email protected]" }]
maintainers = [{ name = "ANSYS, Inc.", email = "[email protected]" }]
keywords = ["Ansys", "LS-DYNA", "gRPC"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["ansys-dpf-core>=0.7.2",
"ansys-api-dyna==0.3.6",
"ansys-platform-instancemanagement~=1.0",
"pyvista==0.43.8",
]
[project.optional-dependencies]
tests = [
"matplotlib==3.9.0",
"numpy==1.26.4",
"pytest==8.2.1",
"pytest-cov==5.0.0",
"joblib==1.4.2",
"pandas==2.2.2",
"openpyxl==3.1.2",
"scikit-learn==1.4.2",
"pytest-xdist==3.6.1",
"ipython==8.24.0",
]
doc = [
"recommonmark==0.7.1",
"matplotlib==3.9.0",
"imageio==2.34.1",
"imageio-ffmpeg==0.4.9",
"numpydoc==1.7.0",
"Sphinx==7.3.7",
"sphinx-autobuild==2024.4.16",
"sphinxcontrib-websupport==1.2.7",
"pytest-sphinx==0.6.3",
"sphinx-notfound-page==1.0.0",
"sphinx-copybutton==0.5.2",
"sphinx-gallery==0.16.0",
"sphinx-autodoc-typehints==2.1.0",
"ansys-sphinx-theme==0.16.0",
"pypandoc==1.13",
"nbsphinx==0.9.4",
"ipywidgets==8.1.2",
"joblib==1.4.2",
"scikit-learn==1.4.2",
"ipython==8.24.0",
"jupyterlab==4.2.0",
"sphinx-jinja==2.0.2",
"sphinx-autoapi==3.0.0",
]
[tool.flit.module]
name = "ansys.dyna.core"
[project.urls]
Source = "https://github.com/pyansys/pydyna"
Homepage = "https://dyna.docs.pyansys.com"
Documentation = "https://dyna.docs.pyansys.com"
Tracker = "https://github.com/pyansys/pydyna/issues"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 120
default_section = "THIRDPARTY"
src_paths = ["doc", "src", "tests"]
[tool.coverage.run]
source = ["ansys.dyna.core"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
minversion = "7.1"
addopts = "-ra --cov=ansys.dyna.core --cov-report html:.cov/html --cov-report xml:.cov/xml --cov-report term -vv"
testpaths = ["tests"]