Skip to content

Commit

Permalink
Fixed pyproject.toml and setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Barnett committed May 2, 2023
1 parent 16bcce0 commit 797b57a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 35 deletions.
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version: 2023.5.4

Fixed pyproject.toml and setup.py.

Version: 2023.5.3

pyproject.toml was missing.
Expand Down
33 changes: 1 addition & 32 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,3 @@
[project]
name = "regex"
version = "2023.5.2"
authors = [
{name="Matthew Barnett", email="regex@mrabarnett.plus.com"},
]
description = "Alternative regular expression module, to replace re."
readme = "README.rst"
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Topic :: Text Processing :: General",
]
license = {file = "LICENSE.txt"}

[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project.urls]
"Homepage" = "https://github.com/mrabarnett/mrab-regex"
"Bug Tracker" = "https://github.com/mrabarnett/mrab-regex/issues"
2 changes: 1 addition & 1 deletion regex_3/regex.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
"VERSION1", "X", "VERBOSE", "W", "WORD", "error", "Regex", "__version__",
"__doc__", "RegexFlag"]

__version__ = "2.5.126"
__version__ = "2.5.127"

# --------------------------------------------------------------------
# Public interface.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='regex',
version='2023.5.2',
version='2023.5.4',
description='Alternative regular expression module, to replace re.',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand All @@ -32,7 +32,7 @@
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
],
python_requires='>=3.8',
python_requires='>=3.6',

package_dir={'regex': 'regex_3'},
py_modules=['regex.__init__', 'regex.regex', 'regex._regex_core',
Expand Down

0 comments on commit 797b57a

Please sign in to comment.