Skip to content

Commit

Permalink
fix: make lib type hint friendly (#18)
Browse files Browse the repository at this point in the history
Co-authored-by: Ran Isenberg <ran.isenberg@ranthebuilder.cloud>
  • Loading branch information
ran-isenberg and Ran Isenberg authored Jul 15, 2023
1 parent f770d8f commit a80551c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# AWS Lambda Handler Environment Variables Modeler (Python)
# AWS Lambda Environment Variables Modeler (Python)

[![license](https://img.shields.io/github/license/ran-isenberg/aws-lambda-env-modeler)](https://github.com/ran-isenberg/aws-lambda-env-modeler/blob/master/LICENSE)
![PythonSupport](https://img.shields.io/static/v1?label=python&message=3.8.1&color=blue?style=flat-square&logo=python)
Expand Down
Empty file added aws_lambda_env_modeler/py.typed
Empty file.
2 changes: 1 addition & 1 deletion aws_lambda_env_modeler/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

Model = TypeVar('Model', bound=BaseModel)

__all__ = ['Model']
__all__ = ['Model', 'BaseModel']
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws_lambda_env_modeler"
version = "1.0.0"
version = "1.0.1"
description = "AWS-Lambda-Env-Modeler is a Python library designed to simplify the process of managing and validating environment variables in your AWS Lambda functions."
authors = ["Ran Isenberg"]
classifiers=[
Expand All @@ -17,7 +17,7 @@ readme = "README.md"
keywords = ["environment variables parser", "aws lambda", "serverless best practices", "aws serverless"]
license = "MIT-0"
packages = [
{ include = "aws_lambda_env_modeler" }]
{ include = "aws_lambda_env_modeler/py.typed" }]

[tool.poetry.urls]
"Issue tracker" = "https://github.com/ran-isenberg/aws-lambda-env-modeler/issues"
Expand Down

0 comments on commit a80551c

Please sign in to comment.