11[build-system ]
2- requires = [" flit_core >=3.2,<3.11 " ]
2+ requires = [" flit_core >=3.2,<4 " ]
33build-backend = " flit_core.buildapi"
44
55[project ]
66name = " ansys-tools-common"
7- version = " 0.8 .dev0"
7+ version = " 0.1 .dev0"
88description = " A set of tools for PyAnsys libraries"
99readme = " README.rst"
1010requires-python = " >=3.10,<4"
11- license = { file = " LICENSE" }
11+ license = " MIT"
12+ license-files = [" LICENSE" ]
1213authors = [{
name =
" ANSYS, Inc." ,
email =
" [email protected] " }]
1314maintainers = [{
name =
" ANSYS, Inc." ,
email =
" [email protected] " }]
1415classifiers = [
1516 " Development Status :: 4 - Beta" ,
1617 " Intended Audience :: Science/Research" ,
1718 " Topic :: Scientific/Engineering :: Information Analysis" ,
18- " License :: OSI Approved :: MIT License" ,
1919 " Operating System :: OS Independent" ,
2020 " Programming Language :: Python :: 3.10" ,
2121 " Programming Language :: Python :: 3.11" ,
2222 " Programming Language :: Python :: 3.12" ,
2323 " Programming Language :: Python :: 3.13" ,
2424]
25- dependencies = [
26-
27- ]
25+ dependencies = []
2826
2927[project .optional-dependencies ]
3028
31- tests = [
32-
33- ]
34-
35- doc = [
36-
37- ]
29+ tests = []
30+ doc = []
3831
3932[project .urls ]
4033Source = " https://github.com/ansys/ansys-tools"
@@ -46,17 +39,9 @@ Releases = "https://github.com/ansys/ansys-tools/releases/"
4639[tool .flit .module ]
4740name = " ansys.tools"
4841
49- [tool .black ]
50- line-length = 100
51-
52- [tool .isort ]
53- profile = " black"
54- force_sort_within_sections = true
55- line_length = 100
56- src_paths = [" doc" , " src" , " tests" ]
57-
5842[tool .ruff ]
5943line-length = 120
44+ fix = true
6045extend-exclude = [" examples/**/*.py" ]
6146
6247[tool .ruff .lint ]
@@ -68,12 +53,14 @@ select = [
6853 " N" , # pep8-naming, see https://beta.ruff.rs/docs/rules/#pep8-naming-n
6954 " PTH" , # flake8-use-pathlib, https://beta.ruff.rs/docs/rules/#flake8-use-pathlib-pth
7055]
71- ignore = [" D416 " ]
56+ ignore = []
7257
7358[tool .ruff .format ]
7459quote-style = " double"
75- indent-style = " tab "
60+ indent-style = " space "
7661line-ending = " auto"
62+ docstring-code-format = true
63+ docstring-code-line-length = " dynamic"
7764
7865[tool .ruff .lint .isort ]
7966combine-as-imports = true
@@ -82,7 +69,7 @@ known-first-party = ["ansys"]
8269
8370[tool .ruff .lint .pydocstyle ]
8471# Settings: https://docs.astral.sh/ruff/settings/#lintpydocstyle
85- convention = " google "
72+ convention = " numpy "
8673
8774[tool .towncrier ]
8875package = " ansys.tools"
0 commit comments