1
1
mirror of https://github.com/mrabarnett/mrab-regex.git synced 2025-10-05 20:02:39 +02:00

Added pyproject.toml.

This commit is contained in:
Matthew Barnett
2023-05-02 14:54:39 +01:00
parent 15cbd1eaf3
commit 78460dc755
5 changed files with 9 additions and 43 deletions

View File

@@ -30,7 +30,7 @@ jobs:
- name: Run test
run: |
python setup.py install
python -m pip install -vv .
python -m unittest -v regex.test_regex
# Build Linux/macOS/Windows wheels.

40
.hgeol
View File

@@ -1,40 +0,0 @@
[patterns]
# Non human-editable files are binary
**.dsp = BIN
**.dsw = BIN
**.mk = BIN
**.sln = BIN
**.vcproj = BIN
**.vsprops = BIN
**.aif = BIN
**.au = BIN
**.bmp = BIN
**.db = BIN
**.exe = BIN
**.icns = BIN
**.gif = BIN
**.ico = BIN
**.info = BIN
**.jpg = BIN
**.pck = BIN
**.png = BIN
**.psd = BIN
**.tar = BIN
**.xar = BIN
**.zip = BIN
**.pyd = BIN
Lib/email/test/data/msg_26.txt = BIN
Lib/test/sndhdrdata/sndhdr.* = BIN
Lib/test/decimaltestdata/*.decTest = BIN
# All other files (which presumably are human-editable) are "native".
# This must be the last rule!
** = native
[repository]
native = LF

View File

@@ -4,3 +4,4 @@ include regex_3/*.py
include docs/*.*
include tools/*.py
include LICENSE.txt
include pyproject.toml

View File

@@ -241,7 +241,7 @@ __all__ = ["cache_all", "compile", "DEFAULT_VERSION", "escape", "findall",
"VERSION1", "X", "VERBOSE", "W", "WORD", "error", "Regex", "__version__",
"__doc__", "RegexFlag"]
__version__ = "2.5.125"
__version__ = "2.5.126"
# --------------------------------------------------------------------
# Public interface.

View File

@@ -7,7 +7,7 @@ with open('README.rst') as file:
setup(
name='regex',
version='2023.3.23',
version='2023.5.2',
description='Alternative regular expression module, to replace re.',
long_description=long_description,
long_description_content_type='text/x-rst',
@@ -21,7 +21,12 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',