-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (70 loc) · 1.93 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
[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-template"
dynamic = ["version"]
description = "Template repository to create your own toolkit using PyAEDT."
readme = "README.rst"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "ANSYS, Inc.", email = "pyansys.support@ansys.com"},
]
maintainers = [
{name = "PyAnsys developers", email = "pyansys.maintainers@ansys.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"build==0.10.0",
"twine==4.0.2",
"pyaedt",
"importlib-metadata >=4.0",
"pyside6==6.5.1.1",
"pyqtgraph",
"qdarkstyle",
"flask",
]
[project.optional-dependencies]
tests = [
"pytest==7.3.2",
"pytest-cov==4.1.0",
]
doc = [
"ansys-sphinx-theme==0.9.9",
"numpydoc==1.5.0",
"recommonmark==0.7.1",
"sphinx==7.0.1",
"sphinx-copybutton==0.5.2",
"enum-tools[sphinx]==0.10.0",
"sphinx-autoapi==2.1.1",
"sphinx-autobuild==2021.3.14",
"sphinx-autodoc-typehints==1.23.2",
"sphinx-gallery==0.13.0",
"sphinx-notfound-page==0.8.3",
"nbsphinx==0.9.2",
]
[tool.flit.module]
name = "ansys.aedt.toolkits.template"
[project.urls]
Source = "https://github.com/pyansys/pyaedt-toolkit-template.git"
Tracker = "https://github.com/pyansys/pyaedt-toolkit-template.git/issues"
Homepage = "https://github.com/pyansys/pyaedt-toolkit-template.git"
[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.pyaedt_toolkits"]
[tool.coverage.report]
show_missing = true