pySVModel 0.5.3__tar.gz → 0.5.5__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.3 → pysvmodel-0.5.5}/PKG-INFO +24 -25
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/pySVModel/__init__.py +1 -1
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/pySVModel.egg-info/PKG-INFO +24 -25
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/pySVModel.egg-info/requires.txt +21 -21
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/setup.py +2 -1
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/LICENSE.md +0 -0
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/README.md +0 -0
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/pySVModel.egg-info/SOURCES.txt +0 -0
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/pySVModel.egg-info/dependency_links.txt +0 -0
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/pySVModel.egg-info/top_level.txt +0 -0
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/pyproject.toml +0 -0
- {pysvmodel-0.5.3 → pysvmodel-0.5.5}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pySVModel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.5
|
|
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
|
|
@@ -18,54 +18,53 @@ Classifier: Topic :: Software Development :: Code Generators
|
|
|
18
18
|
Classifier: Topic :: Software Development :: Compilers
|
|
19
19
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
20
20
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
26
25
|
Classifier: Development Status :: 3 - Alpha
|
|
27
|
-
Requires-Python: >=3.
|
|
26
|
+
Requires-Python: >=3.11
|
|
28
27
|
Description-Content-Type: text/markdown
|
|
29
28
|
License-File: LICENSE.md
|
|
30
29
|
Requires-Dist: pyTooling~=8.7
|
|
31
30
|
Provides-Extra: doc
|
|
32
|
-
Requires-Dist: pyTooling~=8.7; extra == "doc"
|
|
33
31
|
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "doc"
|
|
32
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "doc"
|
|
33
|
+
Requires-Dist: sphinx_design~=0.6; extra == "doc"
|
|
34
|
+
Requires-Dist: autoapi>=2.0.1; extra == "doc"
|
|
34
35
|
Requires-Dist: sphinx~=8.2; extra == "doc"
|
|
36
|
+
Requires-Dist: pyTooling~=8.7; extra == "doc"
|
|
37
|
+
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "doc"
|
|
35
38
|
Requires-Dist: docutils~=0.21; extra == "doc"
|
|
36
39
|
Requires-Dist: docutils_stubs~=0.0.22; extra == "doc"
|
|
37
|
-
Requires-Dist: sphinx_reports~=0.9; extra == "doc"
|
|
38
|
-
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "doc"
|
|
39
|
-
Requires-Dist: sphinx_autodoc_typehints~=3.2; extra == "doc"
|
|
40
|
-
Requires-Dist: sphinx_design~=0.6; extra == "doc"
|
|
41
|
-
Requires-Dist: autoapi>=2.0.1; extra == "doc"
|
|
42
40
|
Requires-Dist: sphinx-copybutton>=0.5; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx_reports~=0.9; extra == "doc"
|
|
43
42
|
Provides-Extra: test
|
|
44
|
-
Requires-Dist: pyTooling~=8.7; extra == "test"
|
|
45
|
-
Requires-Dist: pytest~=8.4; extra == "test"
|
|
46
43
|
Requires-Dist: pytest-cov~=7.0; extra == "test"
|
|
47
|
-
Requires-Dist: lxml
|
|
48
|
-
Requires-Dist:
|
|
44
|
+
Requires-Dist: lxml<7.0,>=5.4; extra == "test"
|
|
45
|
+
Requires-Dist: Coverage~=7.11; extra == "test"
|
|
49
46
|
Requires-Dist: typing_extensions~=4.15; extra == "test"
|
|
50
|
-
Requires-Dist:
|
|
47
|
+
Requires-Dist: pyTooling~=8.7; extra == "test"
|
|
48
|
+
Requires-Dist: mypy[reports]~=1.18; extra == "test"
|
|
49
|
+
Requires-Dist: pytest~=8.4; extra == "test"
|
|
51
50
|
Provides-Extra: all
|
|
52
|
-
Requires-Dist: pyTooling~=8.7; extra == "all"
|
|
53
51
|
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "all"
|
|
52
|
+
Requires-Dist: pytest-cov~=7.0; extra == "all"
|
|
53
|
+
Requires-Dist: lxml<7.0,>=5.4; extra == "all"
|
|
54
|
+
Requires-Dist: Coverage~=7.11; extra == "all"
|
|
55
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "all"
|
|
56
|
+
Requires-Dist: sphinx_design~=0.6; extra == "all"
|
|
57
|
+
Requires-Dist: autoapi>=2.0.1; extra == "all"
|
|
54
58
|
Requires-Dist: sphinx~=8.2; extra == "all"
|
|
55
|
-
Requires-Dist:
|
|
59
|
+
Requires-Dist: typing_extensions~=4.15; extra == "all"
|
|
60
|
+
Requires-Dist: pyTooling~=8.7; extra == "all"
|
|
61
|
+
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
56
62
|
Requires-Dist: docutils~=0.21; extra == "all"
|
|
57
63
|
Requires-Dist: docutils_stubs~=0.0.22; extra == "all"
|
|
58
|
-
Requires-Dist: pytest-cov~=7.0; extra == "all"
|
|
59
|
-
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
60
|
-
Requires-Dist: sphinx_autodoc_typehints~=3.2; extra == "all"
|
|
61
64
|
Requires-Dist: sphinx-copybutton>=0.5; extra == "all"
|
|
62
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: pytest~=8.4; extra == "all"
|
|
63
66
|
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"
|
|
66
|
-
Requires-Dist: autoapi>=2.0.1; extra == "all"
|
|
67
67
|
Requires-Dist: sphinx_reports~=0.9; extra == "all"
|
|
68
|
-
Requires-Dist: Coverage~=7.10; extra == "all"
|
|
69
68
|
Dynamic: author
|
|
70
69
|
Dynamic: author-email
|
|
71
70
|
Dynamic: classifier
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pySVModel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.5
|
|
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
|
|
@@ -18,54 +18,53 @@ Classifier: Topic :: Software Development :: Code Generators
|
|
|
18
18
|
Classifier: Topic :: Software Development :: Compilers
|
|
19
19
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
20
20
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
26
25
|
Classifier: Development Status :: 3 - Alpha
|
|
27
|
-
Requires-Python: >=3.
|
|
26
|
+
Requires-Python: >=3.11
|
|
28
27
|
Description-Content-Type: text/markdown
|
|
29
28
|
License-File: LICENSE.md
|
|
30
29
|
Requires-Dist: pyTooling~=8.7
|
|
31
30
|
Provides-Extra: doc
|
|
32
|
-
Requires-Dist: pyTooling~=8.7; extra == "doc"
|
|
33
31
|
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "doc"
|
|
32
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "doc"
|
|
33
|
+
Requires-Dist: sphinx_design~=0.6; extra == "doc"
|
|
34
|
+
Requires-Dist: autoapi>=2.0.1; extra == "doc"
|
|
34
35
|
Requires-Dist: sphinx~=8.2; extra == "doc"
|
|
36
|
+
Requires-Dist: pyTooling~=8.7; extra == "doc"
|
|
37
|
+
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "doc"
|
|
35
38
|
Requires-Dist: docutils~=0.21; extra == "doc"
|
|
36
39
|
Requires-Dist: docutils_stubs~=0.0.22; extra == "doc"
|
|
37
|
-
Requires-Dist: sphinx_reports~=0.9; extra == "doc"
|
|
38
|
-
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "doc"
|
|
39
|
-
Requires-Dist: sphinx_autodoc_typehints~=3.2; extra == "doc"
|
|
40
|
-
Requires-Dist: sphinx_design~=0.6; extra == "doc"
|
|
41
|
-
Requires-Dist: autoapi>=2.0.1; extra == "doc"
|
|
42
40
|
Requires-Dist: sphinx-copybutton>=0.5; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx_reports~=0.9; extra == "doc"
|
|
43
42
|
Provides-Extra: test
|
|
44
|
-
Requires-Dist: pyTooling~=8.7; extra == "test"
|
|
45
|
-
Requires-Dist: pytest~=8.4; extra == "test"
|
|
46
43
|
Requires-Dist: pytest-cov~=7.0; extra == "test"
|
|
47
|
-
Requires-Dist: lxml
|
|
48
|
-
Requires-Dist:
|
|
44
|
+
Requires-Dist: lxml<7.0,>=5.4; extra == "test"
|
|
45
|
+
Requires-Dist: Coverage~=7.11; extra == "test"
|
|
49
46
|
Requires-Dist: typing_extensions~=4.15; extra == "test"
|
|
50
|
-
Requires-Dist:
|
|
47
|
+
Requires-Dist: pyTooling~=8.7; extra == "test"
|
|
48
|
+
Requires-Dist: mypy[reports]~=1.18; extra == "test"
|
|
49
|
+
Requires-Dist: pytest~=8.4; extra == "test"
|
|
51
50
|
Provides-Extra: all
|
|
52
|
-
Requires-Dist: pyTooling~=8.7; extra == "all"
|
|
53
51
|
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "all"
|
|
52
|
+
Requires-Dist: pytest-cov~=7.0; extra == "all"
|
|
53
|
+
Requires-Dist: lxml<7.0,>=5.4; extra == "all"
|
|
54
|
+
Requires-Dist: Coverage~=7.11; extra == "all"
|
|
55
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "all"
|
|
56
|
+
Requires-Dist: sphinx_design~=0.6; extra == "all"
|
|
57
|
+
Requires-Dist: autoapi>=2.0.1; extra == "all"
|
|
54
58
|
Requires-Dist: sphinx~=8.2; extra == "all"
|
|
55
|
-
Requires-Dist:
|
|
59
|
+
Requires-Dist: typing_extensions~=4.15; extra == "all"
|
|
60
|
+
Requires-Dist: pyTooling~=8.7; extra == "all"
|
|
61
|
+
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
56
62
|
Requires-Dist: docutils~=0.21; extra == "all"
|
|
57
63
|
Requires-Dist: docutils_stubs~=0.0.22; extra == "all"
|
|
58
|
-
Requires-Dist: pytest-cov~=7.0; extra == "all"
|
|
59
|
-
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
60
|
-
Requires-Dist: sphinx_autodoc_typehints~=3.2; extra == "all"
|
|
61
64
|
Requires-Dist: sphinx-copybutton>=0.5; extra == "all"
|
|
62
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: pytest~=8.4; extra == "all"
|
|
63
66
|
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"
|
|
66
|
-
Requires-Dist: autoapi>=2.0.1; extra == "all"
|
|
67
67
|
Requires-Dist: sphinx_reports~=0.9; extra == "all"
|
|
68
|
-
Requires-Dist: Coverage~=7.10; extra == "all"
|
|
69
68
|
Dynamic: author
|
|
70
69
|
Dynamic: author-email
|
|
71
70
|
Dynamic: classifier
|
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
pyTooling~=8.7
|
|
2
2
|
|
|
3
3
|
[all]
|
|
4
|
-
pyTooling~=8.7
|
|
5
4
|
sphinx_rtd_theme~=3.0
|
|
5
|
+
pytest-cov~=7.0
|
|
6
|
+
lxml<7.0,>=5.4
|
|
7
|
+
Coverage~=7.11
|
|
8
|
+
sphinx_autodoc_typehints~=3.5
|
|
9
|
+
sphinx_design~=0.6
|
|
10
|
+
autoapi>=2.0.1
|
|
6
11
|
sphinx~=8.2
|
|
7
|
-
|
|
12
|
+
typing_extensions~=4.15
|
|
13
|
+
pyTooling~=8.7
|
|
14
|
+
sphinxcontrib-mermaid~=1.0
|
|
8
15
|
docutils~=0.21
|
|
9
16
|
docutils_stubs~=0.0.22
|
|
10
|
-
pytest-cov~=7.0
|
|
11
|
-
sphinxcontrib-mermaid~=1.0
|
|
12
|
-
sphinx_autodoc_typehints~=3.2
|
|
13
17
|
sphinx-copybutton>=0.5
|
|
14
|
-
|
|
18
|
+
pytest~=8.4
|
|
15
19
|
mypy[reports]~=1.18
|
|
16
|
-
sphinx_design~=0.6
|
|
17
|
-
typing_extensions~=4.15
|
|
18
|
-
autoapi>=2.0.1
|
|
19
20
|
sphinx_reports~=0.9
|
|
20
|
-
Coverage~=7.10
|
|
21
21
|
|
|
22
22
|
[doc]
|
|
23
|
-
pyTooling~=8.7
|
|
24
23
|
sphinx_rtd_theme~=3.0
|
|
24
|
+
sphinx_autodoc_typehints~=3.5
|
|
25
|
+
sphinx_design~=0.6
|
|
26
|
+
autoapi>=2.0.1
|
|
25
27
|
sphinx~=8.2
|
|
28
|
+
pyTooling~=8.7
|
|
29
|
+
sphinxcontrib-mermaid~=1.0
|
|
26
30
|
docutils~=0.21
|
|
27
31
|
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
32
|
sphinx-copybutton>=0.5
|
|
33
|
+
sphinx_reports~=0.9
|
|
34
34
|
|
|
35
35
|
[test]
|
|
36
|
-
pyTooling~=8.7
|
|
37
|
-
pytest~=8.4
|
|
38
36
|
pytest-cov~=7.0
|
|
39
|
-
lxml
|
|
40
|
-
|
|
37
|
+
lxml<7.0,>=5.4
|
|
38
|
+
Coverage~=7.11
|
|
41
39
|
typing_extensions~=4.15
|
|
42
|
-
|
|
40
|
+
pyTooling~=8.7
|
|
41
|
+
mypy[reports]~=1.18
|
|
42
|
+
pytest~=8.4
|
|
@@ -46,12 +46,13 @@ setup(
|
|
|
46
46
|
gitHubNamespace=gitHubNamespace,
|
|
47
47
|
keywords="Python3 Verilog SystemVerilog Language Model Abstract",
|
|
48
48
|
sourceFileWithVersion=packageInformationFile,
|
|
49
|
-
developmentStatus="alpha",
|
|
50
49
|
classifiers=list(DEFAULT_CLASSIFIERS) + [
|
|
51
50
|
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
|
52
51
|
"Topic :: Software Development :: Code Generators",
|
|
53
52
|
"Topic :: Software Development :: Compilers"
|
|
54
53
|
],
|
|
54
|
+
developmentStatus="alpha",
|
|
55
|
+
pythonVersions=("3.11", "3.12", "3.13", "3.14"),
|
|
55
56
|
dataFiles={
|
|
56
57
|
packageName: ["py.typed"]
|
|
57
58
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|