-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jaf"
version = "0.2.0"
description = "JSON Array Filter (`jaf`) is a versatile filter for JSON arrays. It is a domain-specific language (DSL) that allows you to filter JSON arrays using a simple, yet powerful syntax. Programmatically, the AST can be used to filter JSON arrays in a more flexible way."
authors = [
{ name = "Alex Towell", email = "[email protected]" }
]
readme = "README.md"
license = { text = "MIT License" }
keywords = ["filter", "JSON", "AST", "DSL", "Lark", "parser", "array"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"lark-parser"
]
# Specify package discovery
[tool.setuptools.packages.find]
include = ["jaf", "jaf.*"]
# Include package data
[tool.setuptools.package-data]
"jaf.dsl" = ["grammar.lark"]
[project.urls]
Homepage = "https://github.com/queelius/jaf"
Documentation = "https://github.com/queelius/jaf#readme"
Repository = "https://github.com/queelius/jaf"