Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
# Contact: qubitium@modelcloud.ai, x.com/qubitium
-->

# Pcre (Python Pcre2 Binding)
# PyPcre (Python Pcre2 Binding)

Python bindings for the system PCRE2 library with a familiar `re`-style API.

## Installation

```bash
pip install pcre
pip install PyPcre
```

The package links against the `libpcre2-8` variant already available on your
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ version = "0.1.0"
description = "Modern, GIL-friendly, Fast Python bindings for PCRE2 with auto caching and JIT of compiled patterns."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "ModelCloud", email = "qubitium@modelcloud.ai" },
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
Expand All @@ -37,5 +37,8 @@ keywords = ["regex", "pcre2", "bindings"]
[project.urls]
Homepage = "https://github.com/ModelCloud/pcre"

[tool.setuptools]
packages = ["pcre"]

[tool.pytest.ini_options]
pythonpath = ["."]
14 changes: 0 additions & 14 deletions setup.cfg

This file was deleted.