Skip to content

Commit

Permalink
adds package auto discovery when buidling new version (#94)
Browse files Browse the repository at this point in the history
Co-authored-by: Piotr Dyba <piotr@dyba.it>
Co-authored-by: Grzegorz Redlicki <redlicki.grzegorz@gmail.com>
  • Loading branch information
3 people authored Jan 11, 2024
1 parent 886413b commit 9866642
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,17 @@ Released 2024-01-10

- Adds the ability to make an HTTP request bypassing the API Gateway

### Version 0.6.3
Released 2024-01-10

- Cleans the repository after recent pull requests
- Updates the requirements needed for deployment

### Version 0.6.4
Released 2024-01-11

- Allows Lambdalizer to discover packages on its own

### Version 0.7.0
Release ETA 2024-02-31 ;)

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import pathlib

from setuptools import setup
from setuptools import find_packages, setup

# TODO: Add auto discovery for packages.
setup(
name="lbz",
version=pathlib.Path("version").read_text("utf-8").strip(),
author="Piotr Dyba",
author_email="piotr.dyba@localbini.com",
packages=["lbz", "lbz.authz", "lbz.dev", "lbz.events", "lbz.lambdas"],
packages=find_packages(exclude=["examples", "examples.*", "tests", "tests.*"]),
package_data={"lbz": ["py.typed"]},
scripts=[],
url="https://github.com/pdyba/lambdalizator",
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.3
0.6.4

0 comments on commit 9866642

Please sign in to comment.