Skip to content

Commit

Permalink
add license and readme descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
pinzon authored Oct 18, 2024
2 parents 0045df2 + 421180b commit 8f583c0
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
11 changes: 11 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
13 changes: 9 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
[project]
name = "aws-json-term-matcher"
version = "0.1.1"
version = "0.1.2"
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",
Expand All @@ -25,6 +33,3 @@ test = [

[project.urls]
Repository = "https://github.com/pinzon/aws-json-term-matcher.git"

[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown"}

0 comments on commit 8f583c0

Please sign in to comment.