From d235c2c17f2335dd7699f3c29a6ae6db6dbe6dab Mon Sep 17 00:00:00 2001 From: Matthew Barnett Date: Tue, 2 May 2023 15:19:39 +0100 Subject: [PATCH] pyproject.toml was missing. --- pyproject.toml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e1caca6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,34 @@ +[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"] +build-backend = "setuptools.build_meta" + +[project.urls] +"Homepage" = "https://github.com/mrabarnett/mrab-regex" +"Bug Tracker" = "https://github.com/mrabarnett/mrab-regex/issues"