-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
73 lines (63 loc) · 1.84 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
[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-antenna"
dynamic = ["version"]
description = "Toolkit to design antennas with Ansys AEDT."
readme = "README.rst"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "ANSYS, Inc.", email = "[email protected]"},
]
maintainers = [
{name = "ANSYS, Inc.", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'ansys-aedt-toolkits-common[all]'
]
[project.optional-dependencies]
all = [
'ansys-aedt-toolkits-common[all]'
]
tests = [
'ansys-aedt-toolkits-common[tests]'
]
doc = [
'ansys-aedt-toolkits-common[doc]'
]
[tool.flit.module]
name = "ansys.aedt.toolkits.antenna"
[project.urls]
Source = "https://github.com/ansys/pyaedt-toolkits-antenna"
Issues = "https://github.com/ansys/pyaedt-toolkits-antenna/issues"
Discussions = "https://github.com/ansys/pyaedt-toolkits-antenna/discussions"
Documentation = "https://aedt.antenna.toolkit.docs.pyansys.com"
Releases = "https://github.com/ansys/pyaedt-toolkits-antenna/releases"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 120
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 = [
"patch_api: mark test as related to the patch antenna API.",
"toolkit_api: mark test as related to the toolkit API.",
"rest_api: mark test as related to the REST API.",
]