-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
93 lines (84 loc) · 2.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
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyaedt-examples"
dynamic = ["version"]
description = "PyAEDT Application Examples"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "ANSYS, Inc.", email = "[email protected]"},
]
maintainers = [
{name = "PyAnsys developers", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"build==1.0.3",
"numpy",
"pyaedt==0.7.12",
"twine==5.0.0",
"pydantic",
"pyvista",
]
[project.optional-dependencies]
doc = [
"ansys-sphinx-theme==0.14.0",
"imageio==2.34.0",
"imageio-ffmpeg==0.4.9",
"ipython==8.21.0",
"ipywidgets==8.1.2",
"joblib==1.3.2",
"jupyterlab==4.1.2",
"jupytext==1.16.1",
"matplotlib==3.8.3",
"nbsphinx==0.9.3",
"numpydoc==1.6.0",
"osmnx",
"pytest-sphinx==0.6.0",
"pyvista==0.43.3",
"recommonmark==0.7.1",
"scikit-learn==1.4.1.post1",
"Sphinx==7.2.6",
"sphinx-autobuild==2024.2.4",
"sphinx-autodoc-typehints==2.0.0",
"sphinx-copybutton==0.5.2",
"sphinx-notfound-page==1.0.0",
"sphinxcontrib-websupport==1.2.7",
"SRTM.py",
"utm",
"scikit-rf==0.31.0",
"openpyxl==3.1.2",
"sphinx_design",
"sphinx_jinja",
"vtk==9.3.0",
"pypandoc",
]
ci = [
"vtk-osmesa==9.2.20230527.dev0",
"pypandoc-binary==1.13",
]
[tool.flit.module]
name = "ansys.pyaedt.examples"
[project.urls]
Source = "https://github.com/ansys/pyaedt-examples.git"
Tracker = "https://github.com/ansys/pyaedt-examples.git/issues"
Homepage = "https://github.com/ansys/pyaedt-examples.git"
[tool.black]
line-length=100
[tool.isort]
profile = "black"
force_sort_within_sections = true
default_section = "THIRDPARTY"
src_paths = ["doc", "ansys", "tests"]
line_length=100
[tool.codespell]
skip = '*.css,*.pyc,*.txt,*.gif,*.png,*.jpg,*.js,*.html,*.doctree,*.ttf,*.woff,*.woff2,*.eot,*.mp4,*.inv,*.pickle,*.ipynb,flycheck*,./.git/*,./.hypothesis/*,*.yml,./doc/build/*,./doc/images/*,./dist/*,*~,.hypothesis*,./doc/source/examples/*,*cover,*.dat,*.mac,build,./docker/mapdl/v*,./factory/*,./ansys/mapdl/core/mapdl_functions.py,PKG-INFO,*.mypy_cache/*,./docker/mapdl/*,./_unused/*'
quiet-level = 3