-
Notifications
You must be signed in to change notification settings - Fork 175
/
pyproject.toml
40 lines (35 loc) · 1.25 KB
/
pyproject.toml
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
[project]
name = "grex"
version = "1.0.1"
authors = [{name = "Peter M. Stahl", email = "[email protected]"}]
description = "grex generates regular expressions from user-provided test cases."
readme = "README_PYPI.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["pattern", "regex", "regexp"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"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 :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing"
]
[project.urls]
homepage = "https://github.com/pemistahl/grex"
repository = "https://github.com/pemistahl/grex"
[project.optional-dependencies]
test = ["pytest == 8.0.2"]
[tool.maturin]
no-default-features = true
features = ["pyo3/extension-module", "python"]
[build-system]
requires = ["maturin>=1.1,<2.0"]
build-backend = "maturin"