-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (33 loc) · 937 Bytes
/
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
[project]
name = "aws-json-term-matcher"
version = "0.1.5"
authors = [
{ name = 'Cristopher Pinzon', email = '[email protected]' }
]
description = 'A Python library for advanced filtering and matching of AWS JSON logs, designed to simplify log parsing and enhance filtering capabilities.'
readme = { file ="README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies=[
"lark"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License"
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"black"
]
test = [
"pytest"
]
[project.urls]
Repository = "https://github.com/pinzon/aws-json-term-matcher.git"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"aws_json_term_matcher" = ["grammar.lark"]