Skip to content

Commit

Permalink
Updated pyproject.toml and setup.py according to PEP 517.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Barnett committed Nov 7, 2024
1 parent 930983a commit 26012d9
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 36 deletions.
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version: 2024.11.7

Updated pyproject.toml and setup.py according to PEP 517.

Version: 2024.11.6

Git issue 546: Partial match not working in some instances with non-greedy capture
Expand Down
43 changes: 42 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools > 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "regex"
version = "2024.11.6"
description = "Alternative regular expression module, to replace re."
readme = "README.rst"
authors = [
{name = "Matthew Barnett", email = "[email protected]"},
]
license = {text = "Apache Software License"}

classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"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",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
]

requires-python = ">= 3.8"

[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",
]
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.148"
__version__ = "2.5.149"

# --------------------------------------------------------------------
# Public interface.
Expand Down
34 changes: 0 additions & 34 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,7 @@
from setuptools import setup, Extension
from os.path import join

with open('README.rst', encoding='utf-8') as file:
long_description = file.read()

setup(
name='regex',
version='2024.11.6',
description='Alternative regular expression module, to replace re.',
long_description=long_description,
long_description_content_type='text/x-rst',
author='Matthew Barnett',
author_email='[email protected]',
url='https://github.com/mrabarnett/mrab-regex',
license='Apache Software License',

classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'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',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
],
python_requires='>=3.8',

package_dir={'regex': 'regex_3'},
py_modules=['regex.__init__', 'regex.regex', 'regex._regex_core',
'regex.test_regex'],
ext_modules=[Extension('regex._regex', [join('regex_3', '_regex.c'),
join('regex_3', '_regex_unicode.c')])],
)

0 comments on commit 26012d9

Please sign in to comment.