1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
[build-system]
requires = ["setuptools > 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "regex"
version = "2025.9.18"
description = "Alternative regular expression module, to replace re."
readme = "README.rst"
authors = [
{name = "Matthew Barnett", email = "regex@mrabarnett.plus.com"},
]
license = "Apache-2.0 AND CNRI-Python"
license-files = ["LICENSE.txt"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
]
requires-python = ">= 3.9"
[project.urls]
Homepage = "https://github.com/mrabarnett/mrab-regex"
[tool.setuptools]
package-dir = {regex = "regex_3"}
py-modules = [
"regex.__init__",
"regex.regex",
"regex._regex_core",
"regex.test_regex",
]
|