Skip to content

Commit

Permalink
Rename library to "lex2" and update version
Browse files Browse the repository at this point in the history
  • Loading branch information
DeltaRazero committed Apr 19, 2021
1 parent 423f261 commit 690cab8
Show file tree
Hide file tree
Showing 25 changed files with 13 additions and 10 deletions.
9 changes: 4 additions & 5 deletions lexer2/__init__.py → lex2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
"""<library> lexer2
"""<library> lex2
lexer2 is a library for lexical analysis (often called tokenization). lexer2 is rule-based
in conjunction with regular expressions (regex) and allows for context-based tokenization
through the (optional) use of a ruleset stack.
"lex2" is a library to perform lexical analysis (often called tokenization), using
regular expressions (regex).
"""

'''
Expand All @@ -12,7 +11,7 @@
All rights reserved.
'''

__version__ = "0.9.2"
__version__ = "0.9.3-beta"

# ***************************************************************************************

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ def ReadTxt(fName: str):

# ***************************************************************************************

import lexer2
import lex2

setuptools.setup(
name="liblexer2-python3",
version=lexer2.__version__,
name="liblex2-py3",
version=lex2.__version__,

packages=setuptools.find_packages(),
python_requires='>=3.6',
Expand All @@ -35,12 +35,16 @@ def ReadTxt(fName: str):
keywords="lexer tokenizer sphinx",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only"
"Operating System :: OS Independent",

"Development Status :: 4 - Beta",

"License :: OSI Approved :: zlib/libpng License",

"Development Status :: 4 - Beta",

"Intended Audience :: Developers"
"Topic :: Scientific/Engineering :: Information Analysis"
"Topic :: Software Development :: Compilers",
"Topic :: Text Processing"
],
)

0 comments on commit 690cab8

Please sign in to comment.