From 7587a66375b37bcfe0493ad082ea6db12fba5bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20G=C3=B3recki?= Date: Thu, 7 Mar 2024 18:18:21 +0100 Subject: [PATCH] add py.typed --- .gitignore | 2 ++ Makefile | 2 +- py.typed | 1 + pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 py.typed diff --git a/.gitignore b/.gitignore index f08a8de..b0ad24f 100644 --- a/.gitignore +++ b/.gitignore @@ -87,6 +87,8 @@ ipython_config.py # intended to run in multiple environments; otherwise, check them in: .python-version +.pypirc + # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies diff --git a/Makefile b/Makefile index 60692ab..982aca4 100644 --- a/Makefile +++ b/Makefile @@ -12,4 +12,4 @@ docs_pre_publish: publish: python3 -m build - python3 -m twine upload --repository pypi dist/* \ No newline at end of file + python3 -m twine upload --config-file .pypirc --repository pypi dist/* \ No newline at end of file diff --git a/py.typed b/py.typed new file mode 100644 index 0000000..d6c2649 --- /dev/null +++ b/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. Thise mypy package uses inline types. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index abed784..cef2c95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lato" -version = "0.9.1" +version = "0.9.2" description = "Lato is a Python microframework designed for building modular monoliths and loosely coupled applications." authors = ["Przemysław Górecki "] readme = "README.md"