forked from itsmeadarsh2008/flpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.14 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
40
41
42
43
44
[project]
name = "flpc"
version = "0.2.5"
description = "A Lightning Fast ⚡ Rust-based regex crate wrapper for Python3 to get faster performance. 👾"
maintainers = [{ name = "Adarsh Gourab Mahalik", email = "[email protected]" }]
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/itsmeadarsh2008/flpc"
Repository = "https://github.com/itsmeadarsh2008/flpc.git"
"Bug Tracker" = "https://github.com/itsmeadarsh2008/flpc/issues"
[tool.bandit.assert_used]
skips = ["tests/**/*.py"]
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.pytest.ini_options]
addopts = [
"--capture=sys", # capture sysout messages
"--strict-markers",
"--tb=short", # traceback
]
python_files = "*.py"
testpaths = [ "tests" ]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.4",
]
[build-system]
requires = ["maturin>=1.6,<2.0"]
build-backend = "maturin"