python-waterloo-lexer 0.5.0__tar.gz → 0.5.1__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.
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/PKG-INFO +4 -1
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/pyproject.toml +5 -0
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/python_waterloo_lexer.egg-info/PKG-INFO +4 -1
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/python_waterloo_lexer.py +1 -1
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/README.md +0 -0
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/README_PYPI.md +0 -0
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/python_waterloo_lexer.egg-info/SOURCES.txt +0 -0
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/python_waterloo_lexer.egg-info/dependency_links.txt +0 -0
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/python_waterloo_lexer.egg-info/entry_points.txt +0 -0
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/python_waterloo_lexer.egg-info/requires.txt +0 -0
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/python_waterloo_lexer.egg-info/top_level.txt +0 -0
- {python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/setup.cfg +0 -0
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-waterloo-lexer
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: A pygments lexer derived from the Python lexer, for Waterloo docstrings
|
|
5
5
|
Author: Uwe
|
|
6
6
|
License: BSD-2-Clause
|
|
7
|
+
Project-URL: Homepage, https://github.com/uwe-at-sdv/sdv_doc_waterloo
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/uwe-at-sdv/sdv_doc_waterloo/issues
|
|
9
|
+
Project-URL: Source Code, https://github.com/uwe-at-sdv/sdv_doc_waterloo/tree/ide-plugins/pygments/
|
|
7
10
|
Classifier: Programming Language :: Python :: 3
|
|
8
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
9
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -25,3 +25,8 @@ version = { attr = "python_waterloo_lexer.__version__" }
|
|
|
25
25
|
|
|
26
26
|
[tool.setuptools]
|
|
27
27
|
py-modules = ["python_waterloo_lexer"]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
"Homepage" = "https://github.com/uwe-at-sdv/sdv_doc_waterloo"
|
|
31
|
+
"Bug Tracker" = "https://github.com/uwe-at-sdv/sdv_doc_waterloo/issues"
|
|
32
|
+
"Source Code" = "https://github.com/uwe-at-sdv/sdv_doc_waterloo/tree/ide-plugins/pygments/"
|
{python_waterloo_lexer-0.5.0 → python_waterloo_lexer-0.5.1}/python_waterloo_lexer.egg-info/PKG-INFO
RENAMED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-waterloo-lexer
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.1
|
|
4
4
|
Summary: A pygments lexer derived from the Python lexer, for Waterloo docstrings
|
|
5
5
|
Author: Uwe
|
|
6
6
|
License: BSD-2-Clause
|
|
7
|
+
Project-URL: Homepage, https://github.com/uwe-at-sdv/sdv_doc_waterloo
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/uwe-at-sdv/sdv_doc_waterloo/issues
|
|
9
|
+
Project-URL: Source Code, https://github.com/uwe-at-sdv/sdv_doc_waterloo/tree/ide-plugins/pygments/
|
|
7
10
|
Classifier: Programming Language :: Python :: 3
|
|
8
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
9
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -41,7 +41,7 @@ from pygments.token import Error, Generic, Keyword, Name, String, Literal, Numbe
|
|
|
41
41
|
|
|
42
42
|
#----- Changelog ----------------------------------------------#
|
|
43
43
|
|
|
44
|
-
__version__ = "0.5.
|
|
44
|
+
__version__ = "0.5.1"
|
|
45
45
|
|
|
46
46
|
#----- Constants ----------------------------------------------#
|
|
47
47
|
RE_SECTION = re.compile(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|