-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
102 lines (91 loc) · 2.62 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
102
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
name = "ansys-aedt-toolkits-common"
dynamic = ["version"]
description = "User interface example repository to create your toolkit."
readme = "README.rst"
requires-python = ">=3.8"
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.2.2.post1",
"twine==5.1.1",
"pyaedt>=0.10.0,<0.12",
"pydantic",
"tomli; python_version < '3.12'",
]
[project.optional-dependencies]
all = [
"pyaedt[all]>=0.10.0,<0.12",
"flask",
"pyside6==6.7.3",
"pyqtgraph",
"qdarkstyle",
"pyvistaqt",
]
tests = [
"pyaedt[all]>=0.10.0,<0.12",
"flask",
"pytest>=7.4.0,<8.4",
"pytest-cov>=4.0.0,<6.1",
]
doc = [
"pyaedt[all]>=0.10.0,<0.12",
"recommonmark>=0.7.0,<0.8",
"pyside6==6.7.3",
"ansys-sphinx-theme>=0.10.0,<1.3",
"numpydoc>=1.5.0,<1.9",
"Sphinx>=7.1.0,<8.2",
"sphinx-copybutton>=0.5.0,<0.6",
"sphinx-autobuild==2021.3.14; python_version == '3.8'",
"sphinx-autobuild==2024.10.3; python_version > '3.8'",
"nbsphinx>=0.9.0,<0.10",
"sphinx_design",
"jupytext",
"ipython>=8.13.0,<8.30",
"jupyterlab>=4.0.0,<4.4",
"pypandoc>=1.10.0,<1.15",
]
[tool.flit.module]
name = "ansys.aedt.toolkits.common"
[project.urls]
Source = "https://github.com/ansys/pyaedt-toolkits-common.git"
Issues = "https://github.com/ansys/pyaedt-toolkits-common/issues"
Discussions = "https://github.com/ansys/pyaedt-toolkits-common/discussions"
Documentation = "https://aedt.common.toolkit.docs.pyansys.com"
Releases = "https://github.com/ansys/pyaedt-toolkits-common/releases"
[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.aedt"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
minversion = "7.1"
xfail_strict = false
markers = [
"aedt_common_api: mark test as related to the AEDT common API.",
"common_api: mark test as related to the common API.",
"edb_api: mark test as related to the EDB API.",
"rest_api: mark test as related to the REST API.",
]