-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (44 loc) · 1.32 KB
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
49
[project]
name = "ast-pattern-engine"
version = "1.0.2"
description = "A library for regex-inspired fine-grained AST pattern matching and replacing"
readme = "README.md"
authors = [
{ name = "80sVectorz", email = "66908776+80sVectorz@users.noreply.github.com" }
]
requires-python = ">=3.10"
keywords = ["ast", "pattern-matching", "refactoring", "codemod", "dsl"]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/80sVectorz/ast_pattern_engine"
Repository = "https://github.com/80sVectorz/ast_pattern_engine"
[project.optional-dependencies]
dev = ["pytest"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "-q"
filterwarnings = "error"
pythonpath = ["src"]
[dependency-groups]
dev = [
"pytest-cov>=7.1.0",
"ruff>=0.11.0",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.6",
"mkdocstrings[python]>=1.0.4",
]