-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 836 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
[project]
name = "polyglot_piranha"
requires-python = ">=3.8"
dynamic = ["version"]
description = "Polyglot Piranha is a library for performing structural find and replace with deep cleanup."
authors = [{ name = "Uber Technologies Inc." }]
license = "Apache-2.0"
readme = "README.md"
keywords = [
"refactoring",
"code update",
"structural find-replace",
"structural search and replace",
"structural search",
]
[project.urls]
homepage = "https://github.com/uber/piranha"
documentation = "https://github.com/uber/piranha"
repository = "https://github.com/uber/piranha"
[build-system]
requires = ["maturin>=1.9.1"]
build-backend = "maturin"
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[tool.maturin]
bindings = "pyo3"
manifest-path = "crates/core/Cargo.toml"
include = ["LICENSE", "NOTICE", "polyglot_piranha.pyi"]