pySVModel 0.5.1__tar.gz → 0.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/PKG-INFO +49 -35
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/README.md +1 -1
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/pySVModel/__init__.py +4 -4
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/pySVModel.egg-info/PKG-INFO +49 -35
- pysvmodel-0.5.3/pySVModel.egg-info/requires.txt +42 -0
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/pyproject.toml +26 -5
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/setup.py +19 -17
- pysvmodel-0.5.1/pySVModel.egg-info/requires.txt +0 -42
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/LICENSE.md +0 -0
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/pySVModel.egg-info/SOURCES.txt +0 -0
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/pySVModel.egg-info/dependency_links.txt +0 -0
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/pySVModel.egg-info/top_level.txt +0 -0
- {pysvmodel-0.5.1 → pysvmodel-0.5.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pySVModel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: An abstract SystemVerilog language model (incl. Verilog).
|
|
5
5
|
Home-page: https://GitHub.com/edaa-org/pySVModel
|
|
6
6
|
Author: Patrick Lehmann
|
|
@@ -27,45 +27,59 @@ Classifier: Development Status :: 3 - Alpha
|
|
|
27
27
|
Requires-Python: >=3.9
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
License-File: LICENSE.md
|
|
30
|
-
Requires-Dist: pyTooling~=8.
|
|
30
|
+
Requires-Dist: pyTooling~=8.7
|
|
31
31
|
Provides-Extra: doc
|
|
32
|
-
Requires-Dist:
|
|
32
|
+
Requires-Dist: pyTooling~=8.7; extra == "doc"
|
|
33
|
+
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "doc"
|
|
34
|
+
Requires-Dist: sphinx~=8.2; extra == "doc"
|
|
35
|
+
Requires-Dist: docutils~=0.21; extra == "doc"
|
|
36
|
+
Requires-Dist: docutils_stubs~=0.0.22; extra == "doc"
|
|
37
|
+
Requires-Dist: sphinx_reports~=0.9; extra == "doc"
|
|
33
38
|
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "doc"
|
|
34
|
-
Requires-Dist:
|
|
39
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.2; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx_design~=0.6; extra == "doc"
|
|
35
41
|
Requires-Dist: autoapi>=2.0.1; extra == "doc"
|
|
36
|
-
Requires-Dist: sphinx-copybutton>=0.5
|
|
37
|
-
Requires-Dist: docutils_stubs~=0.0.22; extra == "doc"
|
|
38
|
-
Requires-Dist: sphinx_autodoc_typehints~=2.5; extra == "doc"
|
|
39
|
-
Requires-Dist: sphinx_rtd_theme~=3.0.0; extra == "doc"
|
|
40
|
-
Requires-Dist: sphinx_design~=0.6.1; extra == "doc"
|
|
41
|
-
Requires-Dist: docutils~=0.21; extra == "doc"
|
|
42
|
-
Requires-Dist: sphinx~=8.1; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinx-copybutton>=0.5; extra == "doc"
|
|
43
43
|
Provides-Extra: test
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
44
|
+
Requires-Dist: pyTooling~=8.7; extra == "test"
|
|
45
|
+
Requires-Dist: pytest~=8.4; extra == "test"
|
|
46
|
+
Requires-Dist: pytest-cov~=7.0; extra == "test"
|
|
47
|
+
Requires-Dist: lxml~=6.0; extra == "test"
|
|
48
|
+
Requires-Dist: mypy[reports]~=1.18; extra == "test"
|
|
49
|
+
Requires-Dist: typing_extensions~=4.15; extra == "test"
|
|
50
|
+
Requires-Dist: Coverage~=7.10; extra == "test"
|
|
51
51
|
Provides-Extra: all
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist:
|
|
52
|
+
Requires-Dist: pyTooling~=8.7; extra == "all"
|
|
53
|
+
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "all"
|
|
54
|
+
Requires-Dist: sphinx~=8.2; extra == "all"
|
|
55
|
+
Requires-Dist: pytest~=8.4; extra == "all"
|
|
56
|
+
Requires-Dist: docutils~=0.21; extra == "all"
|
|
57
|
+
Requires-Dist: docutils_stubs~=0.0.22; extra == "all"
|
|
58
|
+
Requires-Dist: pytest-cov~=7.0; extra == "all"
|
|
54
59
|
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist:
|
|
60
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.2; extra == "all"
|
|
61
|
+
Requires-Dist: sphinx-copybutton>=0.5; extra == "all"
|
|
62
|
+
Requires-Dist: lxml~=6.0; extra == "all"
|
|
63
|
+
Requires-Dist: mypy[reports]~=1.18; extra == "all"
|
|
64
|
+
Requires-Dist: sphinx_design~=0.6; extra == "all"
|
|
65
|
+
Requires-Dist: typing_extensions~=4.15; extra == "all"
|
|
57
66
|
Requires-Dist: autoapi>=2.0.1; extra == "all"
|
|
58
|
-
Requires-Dist:
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
Requires-Dist: sphinx_reports~=0.9; extra == "all"
|
|
68
|
+
Requires-Dist: Coverage~=7.10; extra == "all"
|
|
69
|
+
Dynamic: author
|
|
70
|
+
Dynamic: author-email
|
|
71
|
+
Dynamic: classifier
|
|
72
|
+
Dynamic: description
|
|
73
|
+
Dynamic: description-content-type
|
|
74
|
+
Dynamic: home-page
|
|
75
|
+
Dynamic: keywords
|
|
76
|
+
Dynamic: license
|
|
77
|
+
Dynamic: license-file
|
|
78
|
+
Dynamic: project-url
|
|
79
|
+
Dynamic: provides-extra
|
|
80
|
+
Dynamic: requires-dist
|
|
81
|
+
Dynamic: requires-python
|
|
82
|
+
Dynamic: summary
|
|
69
83
|
|
|
70
84
|
<p align="center">
|
|
71
85
|
<a title="edaa-org.github.io/pySVModel" href="https://edaa-org.github.io/pySVModel"><img height="80px" src="doc/_static/logo.svg"/></a>
|
|
@@ -79,7 +93,7 @@ Requires-Dist: sphinx~=8.1; extra == "all"
|
|
|
79
93
|
[](https://pypi.org/project/pySVModel/)
|
|
80
94
|

|
|
81
95
|

|
|
82
|
-
[](https://GitHub.com/edaa-org/pySVModel/actions/workflows/Pipeline.yml)
|
|
83
97
|
[](https://libraries.io/github/edaa-org/pySVModel)
|
|
84
98
|
[](https://app.codacy.com/gh/edaa-org/pySVModel)
|
|
85
99
|
[](https://app.codacy.com/gh/edaa-org/pySVModel)
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://pypi.org/project/pySVModel/)
|
|
11
11
|

|
|
12
12
|

|
|
13
|
-
[](https://GitHub.com/edaa-org/pySVModel/actions/workflows/Pipeline.yml)
|
|
14
14
|
[](https://libraries.io/github/edaa-org/pySVModel)
|
|
15
15
|
[](https://app.codacy.com/gh/edaa-org/pySVModel)
|
|
16
16
|
[](https://app.codacy.com/gh/edaa-org/pySVModel)
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# #
|
|
12
12
|
# License: #
|
|
13
13
|
# ==================================================================================================================== #
|
|
14
|
-
# Copyright 2021-
|
|
14
|
+
# Copyright 2021-2025 Patrick Lehmann - Boetzingen, Germany #
|
|
15
15
|
# #
|
|
16
16
|
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
|
17
17
|
# you may not use this file except in compliance with the License. #
|
|
@@ -39,7 +39,7 @@ supporting multiple frontends.
|
|
|
39
39
|
|
|
40
40
|
.. admonition:: Copyright Information
|
|
41
41
|
|
|
42
|
-
:copyright: Copyright 2021-
|
|
42
|
+
:copyright: Copyright 2021-2025 Patrick Lehmann - Bötzingen, Germany
|
|
43
43
|
:license: Apache License, Version 2.0
|
|
44
44
|
"""
|
|
45
45
|
from enum import unique, Enum
|
|
@@ -50,9 +50,9 @@ from pyTooling.Decorators import export
|
|
|
50
50
|
|
|
51
51
|
__author__ = "Patrick Lehmann"
|
|
52
52
|
__email__ = "Paebbels@gmail.com"
|
|
53
|
-
__copyright__ = "2021-
|
|
53
|
+
__copyright__ = "2021-2025, Patrick Lehmann"
|
|
54
54
|
__license__ = "Apache License, Version 2.0"
|
|
55
|
-
__version__ = "0.5.
|
|
55
|
+
__version__ = "0.5.3"
|
|
56
56
|
|
|
57
57
|
|
|
58
58
|
@export
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pySVModel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: An abstract SystemVerilog language model (incl. Verilog).
|
|
5
5
|
Home-page: https://GitHub.com/edaa-org/pySVModel
|
|
6
6
|
Author: Patrick Lehmann
|
|
@@ -27,45 +27,59 @@ Classifier: Development Status :: 3 - Alpha
|
|
|
27
27
|
Requires-Python: >=3.9
|
|
28
28
|
Description-Content-Type: text/markdown
|
|
29
29
|
License-File: LICENSE.md
|
|
30
|
-
Requires-Dist: pyTooling~=8.
|
|
30
|
+
Requires-Dist: pyTooling~=8.7
|
|
31
31
|
Provides-Extra: doc
|
|
32
|
-
Requires-Dist:
|
|
32
|
+
Requires-Dist: pyTooling~=8.7; extra == "doc"
|
|
33
|
+
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "doc"
|
|
34
|
+
Requires-Dist: sphinx~=8.2; extra == "doc"
|
|
35
|
+
Requires-Dist: docutils~=0.21; extra == "doc"
|
|
36
|
+
Requires-Dist: docutils_stubs~=0.0.22; extra == "doc"
|
|
37
|
+
Requires-Dist: sphinx_reports~=0.9; extra == "doc"
|
|
33
38
|
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "doc"
|
|
34
|
-
Requires-Dist:
|
|
39
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.2; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx_design~=0.6; extra == "doc"
|
|
35
41
|
Requires-Dist: autoapi>=2.0.1; extra == "doc"
|
|
36
|
-
Requires-Dist: sphinx-copybutton>=0.5
|
|
37
|
-
Requires-Dist: docutils_stubs~=0.0.22; extra == "doc"
|
|
38
|
-
Requires-Dist: sphinx_autodoc_typehints~=2.5; extra == "doc"
|
|
39
|
-
Requires-Dist: sphinx_rtd_theme~=3.0.0; extra == "doc"
|
|
40
|
-
Requires-Dist: sphinx_design~=0.6.1; extra == "doc"
|
|
41
|
-
Requires-Dist: docutils~=0.21; extra == "doc"
|
|
42
|
-
Requires-Dist: sphinx~=8.1; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinx-copybutton>=0.5; extra == "doc"
|
|
43
43
|
Provides-Extra: test
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
44
|
+
Requires-Dist: pyTooling~=8.7; extra == "test"
|
|
45
|
+
Requires-Dist: pytest~=8.4; extra == "test"
|
|
46
|
+
Requires-Dist: pytest-cov~=7.0; extra == "test"
|
|
47
|
+
Requires-Dist: lxml~=6.0; extra == "test"
|
|
48
|
+
Requires-Dist: mypy[reports]~=1.18; extra == "test"
|
|
49
|
+
Requires-Dist: typing_extensions~=4.15; extra == "test"
|
|
50
|
+
Requires-Dist: Coverage~=7.10; extra == "test"
|
|
51
51
|
Provides-Extra: all
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist:
|
|
52
|
+
Requires-Dist: pyTooling~=8.7; extra == "all"
|
|
53
|
+
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "all"
|
|
54
|
+
Requires-Dist: sphinx~=8.2; extra == "all"
|
|
55
|
+
Requires-Dist: pytest~=8.4; extra == "all"
|
|
56
|
+
Requires-Dist: docutils~=0.21; extra == "all"
|
|
57
|
+
Requires-Dist: docutils_stubs~=0.0.22; extra == "all"
|
|
58
|
+
Requires-Dist: pytest-cov~=7.0; extra == "all"
|
|
54
59
|
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist:
|
|
60
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.2; extra == "all"
|
|
61
|
+
Requires-Dist: sphinx-copybutton>=0.5; extra == "all"
|
|
62
|
+
Requires-Dist: lxml~=6.0; extra == "all"
|
|
63
|
+
Requires-Dist: mypy[reports]~=1.18; extra == "all"
|
|
64
|
+
Requires-Dist: sphinx_design~=0.6; extra == "all"
|
|
65
|
+
Requires-Dist: typing_extensions~=4.15; extra == "all"
|
|
57
66
|
Requires-Dist: autoapi>=2.0.1; extra == "all"
|
|
58
|
-
Requires-Dist:
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
Requires-Dist: sphinx_reports~=0.9; extra == "all"
|
|
68
|
+
Requires-Dist: Coverage~=7.10; extra == "all"
|
|
69
|
+
Dynamic: author
|
|
70
|
+
Dynamic: author-email
|
|
71
|
+
Dynamic: classifier
|
|
72
|
+
Dynamic: description
|
|
73
|
+
Dynamic: description-content-type
|
|
74
|
+
Dynamic: home-page
|
|
75
|
+
Dynamic: keywords
|
|
76
|
+
Dynamic: license
|
|
77
|
+
Dynamic: license-file
|
|
78
|
+
Dynamic: project-url
|
|
79
|
+
Dynamic: provides-extra
|
|
80
|
+
Dynamic: requires-dist
|
|
81
|
+
Dynamic: requires-python
|
|
82
|
+
Dynamic: summary
|
|
69
83
|
|
|
70
84
|
<p align="center">
|
|
71
85
|
<a title="edaa-org.github.io/pySVModel" href="https://edaa-org.github.io/pySVModel"><img height="80px" src="doc/_static/logo.svg"/></a>
|
|
@@ -79,7 +93,7 @@ Requires-Dist: sphinx~=8.1; extra == "all"
|
|
|
79
93
|
[](https://pypi.org/project/pySVModel/)
|
|
80
94
|

|
|
81
95
|

|
|
82
|
-
[](https://GitHub.com/edaa-org/pySVModel/actions/workflows/Pipeline.yml)
|
|
83
97
|
[](https://libraries.io/github/edaa-org/pySVModel)
|
|
84
98
|
[](https://app.codacy.com/gh/edaa-org/pySVModel)
|
|
85
99
|
[](https://app.codacy.com/gh/edaa-org/pySVModel)
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
pyTooling~=8.7
|
|
2
|
+
|
|
3
|
+
[all]
|
|
4
|
+
pyTooling~=8.7
|
|
5
|
+
sphinx_rtd_theme~=3.0
|
|
6
|
+
sphinx~=8.2
|
|
7
|
+
pytest~=8.4
|
|
8
|
+
docutils~=0.21
|
|
9
|
+
docutils_stubs~=0.0.22
|
|
10
|
+
pytest-cov~=7.0
|
|
11
|
+
sphinxcontrib-mermaid~=1.0
|
|
12
|
+
sphinx_autodoc_typehints~=3.2
|
|
13
|
+
sphinx-copybutton>=0.5
|
|
14
|
+
lxml~=6.0
|
|
15
|
+
mypy[reports]~=1.18
|
|
16
|
+
sphinx_design~=0.6
|
|
17
|
+
typing_extensions~=4.15
|
|
18
|
+
autoapi>=2.0.1
|
|
19
|
+
sphinx_reports~=0.9
|
|
20
|
+
Coverage~=7.10
|
|
21
|
+
|
|
22
|
+
[doc]
|
|
23
|
+
pyTooling~=8.7
|
|
24
|
+
sphinx_rtd_theme~=3.0
|
|
25
|
+
sphinx~=8.2
|
|
26
|
+
docutils~=0.21
|
|
27
|
+
docutils_stubs~=0.0.22
|
|
28
|
+
sphinx_reports~=0.9
|
|
29
|
+
sphinxcontrib-mermaid~=1.0
|
|
30
|
+
sphinx_autodoc_typehints~=3.2
|
|
31
|
+
sphinx_design~=0.6
|
|
32
|
+
autoapi>=2.0.1
|
|
33
|
+
sphinx-copybutton>=0.5
|
|
34
|
+
|
|
35
|
+
[test]
|
|
36
|
+
pyTooling~=8.7
|
|
37
|
+
pytest~=8.4
|
|
38
|
+
pytest-cov~=7.0
|
|
39
|
+
lxml~=6.0
|
|
40
|
+
mypy[reports]~=1.18
|
|
41
|
+
typing_extensions~=4.15
|
|
42
|
+
Coverage~=7.10
|
|
@@ -1,16 +1,31 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
requires = [
|
|
3
|
-
"setuptools
|
|
3
|
+
"setuptools >= 80.0",
|
|
4
4
|
"wheel ~= 0.45",
|
|
5
|
-
"pyTooling ~= 8.
|
|
5
|
+
"pyTooling ~= 8.7"
|
|
6
6
|
]
|
|
7
7
|
build-backend = "setuptools.build_meta"
|
|
8
8
|
|
|
9
|
-
[tool.
|
|
10
|
-
|
|
9
|
+
[tool.pylint.format]
|
|
10
|
+
indent-string="\t"
|
|
11
|
+
max-line-length = 120
|
|
12
|
+
ignore-long-lines = "^.{0,110}#: .*"
|
|
13
|
+
|
|
14
|
+
[tool.pylint.basic]
|
|
15
|
+
argument-naming-style = "camelCase"
|
|
16
|
+
attr-naming-style = "camelCase"
|
|
17
|
+
class-attribute-naming-style = "camelCase"
|
|
18
|
+
class-const-naming-style = "UPPER_CASE"
|
|
19
|
+
class-naming-style = "PascalCase"
|
|
20
|
+
const-naming-style = "UPPER_CASE"
|
|
21
|
+
function-naming-style = "camelCase"
|
|
22
|
+
inlinevar-naming-style = "camelCase"
|
|
23
|
+
method-naming-style = "PascalCase"
|
|
24
|
+
module-naming-style = "any"
|
|
25
|
+
variable-naming-style = "camelCase"
|
|
11
26
|
|
|
12
27
|
[tool.mypy]
|
|
13
|
-
|
|
28
|
+
packages = ["pySVModel"]
|
|
14
29
|
python_version = "3.13"
|
|
15
30
|
#ignore_missing_imports = true
|
|
16
31
|
strict = true
|
|
@@ -20,6 +35,12 @@ show_error_codes = true
|
|
|
20
35
|
namespace_packages = true
|
|
21
36
|
html_report = "report/typing"
|
|
22
37
|
|
|
38
|
+
[tool.pytest]
|
|
39
|
+
junit_xml = "report/unit/UnittestReportSummary.xml"
|
|
40
|
+
|
|
41
|
+
[tool.pyedaa-reports]
|
|
42
|
+
junit_xml = "report/unit/unittest.xml"
|
|
43
|
+
|
|
23
44
|
[tool.pytest.ini_options]
|
|
24
45
|
addopts = "--tb=native"
|
|
25
46
|
# Don't set 'python_classes = *' otherwise, pytest doesn't search for classes
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# #
|
|
12
12
|
# License: #
|
|
13
13
|
# ==================================================================================================================== #
|
|
14
|
-
# Copyright 2021-
|
|
14
|
+
# Copyright 2021-2025 Patrick Lehmann - Boetzingen, Germany #
|
|
15
15
|
# #
|
|
16
16
|
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
|
17
17
|
# you may not use this file except in compliance with the License. #
|
|
@@ -39,19 +39,21 @@ packageName = "pySVModel"
|
|
|
39
39
|
packageDirectory = packageName
|
|
40
40
|
packageInformationFile = Path(f"{packageDirectory}/__init__.py")
|
|
41
41
|
|
|
42
|
-
setup(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
42
|
+
setup(
|
|
43
|
+
**DescribePythonPackageHostedOnGitHub(
|
|
44
|
+
packageName=packageName,
|
|
45
|
+
description="An abstract SystemVerilog language model (incl. Verilog).",
|
|
46
|
+
gitHubNamespace=gitHubNamespace,
|
|
47
|
+
keywords="Python3 Verilog SystemVerilog Language Model Abstract",
|
|
48
|
+
sourceFileWithVersion=packageInformationFile,
|
|
49
|
+
developmentStatus="alpha",
|
|
50
|
+
classifiers=list(DEFAULT_CLASSIFIERS) + [
|
|
51
|
+
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
|
52
|
+
"Topic :: Software Development :: Code Generators",
|
|
53
|
+
"Topic :: Software Development :: Compilers"
|
|
54
|
+
],
|
|
55
|
+
dataFiles={
|
|
56
|
+
packageName: ["py.typed"]
|
|
57
|
+
}
|
|
58
|
+
)
|
|
59
|
+
)
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
pyTooling~=8.0
|
|
2
|
-
|
|
3
|
-
[all]
|
|
4
|
-
sphinx_reports~=0.7
|
|
5
|
-
lxml~=5.3
|
|
6
|
-
sphinxcontrib-mermaid~=1.0
|
|
7
|
-
Coverage~=7.6
|
|
8
|
-
pyTooling~=8.0
|
|
9
|
-
autoapi>=2.0.1
|
|
10
|
-
sphinx-copybutton>=0.5.2
|
|
11
|
-
docutils_stubs~=0.0.22
|
|
12
|
-
sphinx_autodoc_typehints~=2.5
|
|
13
|
-
pytest-cov~=6.0
|
|
14
|
-
typing_extensions~=4.12
|
|
15
|
-
sphinx_rtd_theme~=3.0.0
|
|
16
|
-
mypy~=1.13
|
|
17
|
-
pytest~=8.3
|
|
18
|
-
sphinx_design~=0.6.1
|
|
19
|
-
docutils~=0.21
|
|
20
|
-
sphinx~=8.1
|
|
21
|
-
|
|
22
|
-
[doc]
|
|
23
|
-
sphinx_reports~=0.7
|
|
24
|
-
sphinxcontrib-mermaid~=1.0
|
|
25
|
-
pyTooling~=8.0
|
|
26
|
-
autoapi>=2.0.1
|
|
27
|
-
sphinx-copybutton>=0.5.2
|
|
28
|
-
docutils_stubs~=0.0.22
|
|
29
|
-
sphinx_autodoc_typehints~=2.5
|
|
30
|
-
sphinx_rtd_theme~=3.0.0
|
|
31
|
-
sphinx_design~=0.6.1
|
|
32
|
-
docutils~=0.21
|
|
33
|
-
sphinx~=8.1
|
|
34
|
-
|
|
35
|
-
[test]
|
|
36
|
-
lxml~=5.3
|
|
37
|
-
Coverage~=7.6
|
|
38
|
-
pyTooling~=8.0
|
|
39
|
-
pytest-cov~=6.0
|
|
40
|
-
typing_extensions~=4.12
|
|
41
|
-
mypy~=1.13
|
|
42
|
-
pytest~=8.3
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|