@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44
55[project ]
66name = " ansys-tools-visualization-interface"
7- version = " 0.1 .dev0"
7+ version = " 0.2 .dev0"
88description = " A Python visualization interface for PyAnsys libraries"
99readme = " README.rst"
1010requires-python = " >=3.9,<4"
@@ -22,7 +22,6 @@ classifiers = [
2222 " Programming Language :: Python :: 3.11" ,
2323 " Programming Language :: Python :: 3.12" ,
2424]
25-
2625dependencies = [
2726 " pyvista >= 0.42.0,<1" ,
2827 " beartype >= 0.17.0,<1" ,
@@ -33,13 +32,7 @@ dependencies = [
3332]
3433
3534[project .optional-dependencies ]
36-
37- tests = [
38- " pytest==8.2.0" ,
39- " pytest-pyvista==0.1.9" ,
40- " pytest-cov==5.0.0" ,
41- ]
42-
35+ tests = [" pytest==8.2.0" , " pytest-pyvista==0.1.9" , " pytest-cov==5.0.0" ]
4336doc = [
4437 " ansys-sphinx-theme==0.15.2" ,
4538 " jupyter_sphinx==0.5.3" ,
@@ -59,7 +52,6 @@ name = "ansys.tools.visualization_interface"
5952
6053[tool .black ]
6154line-length = 100
62- indent-width = 4
6355
6456[tool .isort ]
6557profile = " black"
@@ -73,30 +65,24 @@ addopts = "-ra --cov=ansys.tools.visualization_interface --cov-report html:.cov/
7365
7466[tool .ruff ]
7567line-length = 120
76- extend-exclude = [
77- " examples/**/*.py" ,
78- ]
68+ extend-exclude = [" examples/**/*.py" ]
7969
8070[tool .ruff .lint ]
8171select = [
82- " E" , # pycodestyle, see https://beta.ruff.rs/docs/rules/#pycodestyle-e-w
83- " D" , # pydocstyle, see https://beta.ruff.rs/docs/rules/#pydocstyle-d
84- " F" , # pyflakes, see https://beta.ruff.rs/docs/rules/#pyflakes-f
85- " I" , # isort, see https://beta.ruff.rs/docs/rules/#isort-i
86- " N" , # pep8-naming, see https://beta.ruff.rs/docs/rules/#pep8-naming-n
87- " PTH" , # flake8-use-pathlib, https://beta.ruff.rs/docs/rules/#flake8-use-pathlib-pth
72+ " E" , # pycodestyle, see https://beta.ruff.rs/docs/rules/#pycodestyle-e-w
73+ " D" , # pydocstyle, see https://beta.ruff.rs/docs/rules/#pydocstyle-d
74+ " F" , # pyflakes, see https://beta.ruff.rs/docs/rules/#pyflakes-f
75+ " I" , # isort, see https://beta.ruff.rs/docs/rules/#isort-i
76+ " N" , # pep8-naming, see https://beta.ruff.rs/docs/rules/#pep8-naming-n
77+ " PTH" , # flake8-use-pathlib, https://beta.ruff.rs/docs/rules/#flake8-use-pathlib-pth
8878]
89- ignore = [
90- " D416" ,
91- ]
92-
79+ ignore = [" D416" ]
9380
9481[tool .ruff .format ]
9582quote-style = " double"
9683indent-style = " tab"
9784line-ending = " auto"
9885
99-
10086[tool .ruff .lint .isort ]
10187combine-as-imports = true
10288force-sort-within-sections = true
@@ -105,4 +91,3 @@ known-first-party = ["ansys"]
10591[tool .ruff .lint .pydocstyle ]
10692# Settings: https://docs.astral.sh/ruff/settings/#lintpydocstyle
10793convention = " google"
108-
0 commit comments