Skip to content

Commit

Permalink
pyproject.toml was missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Barnett committed May 2, 2023
1 parent 78460dc commit d235c2c
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit d235c2c

Please sign in to comment.