-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 1014 Bytes
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
45
46
47
48
[project]
name = "diff-match-patch-py"
version = "0.1.0"
description = "Python bindings for diff-match-patch-rs"
authors = [
{name = "George Dekermenjian", email = "ged1182@gmail.com"},
]
requires-python = ">=3.11"
readme = "README.md"
[tool.poetry]
name = "diff-match-patch-py"
version = "0.1.0"
description = "Python bindings for diff-match-patch-rs"
authors = ["George Dekermenjian <ged1182@gmail.com>"]
readme = "README.md"
packages = [
{ include = "diff_match_patch", from = "python" }
]
[tool.poetry.dependencies]
python = ">=3.11"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
black = "^23.0"
mypy = "^1.0"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "diff_match_patch._binding"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.black]
line-length = 88
target-version = ["py311"]
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true