forked from ast-grep/ast-grep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.21 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
[build-system]
requires = ["maturin>=1.1,<2.0"]
build-backend = "maturin"
[project]
name = "ast-grep-cli"
version = "0.19.0"
description = "Structural Search and Rewrite code at large scale using precise AST pattern."
authors = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
maintainers = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"ast",
"pattern",
"codemod",
"structural search",
"rewrite"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development",
"Topic :: Text Processing"
]
[project.urls]
Repository = "https://github.com/ast-grep/ast-grep"
Documentation = "https://ast-grep.github.io/"
Changelog = "https://github.com/ast-grep/ast-grep/blob/main/CHANGELOG.md"
[tool.maturin]
bindings = "bin"
manifest-path = "crates/cli/Cargo.toml"
strip = true