diff --git a/README.md b/README.md index 2100cbf..2f21bcb 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ What Makes threadx Interesting? - [Fewer lambdas](#Fewer-lambdas) - [Build data transformation pipeline](#Build-data-transformation-pipeline) - [Why I Built This](#Why-I-Built-This) -- [TODO](#TODO) + ## Install ```bash diff --git a/pyproject.toml b/pyproject.toml index c782f90..1088848 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "threadx" -version = "0.1.0a1" +version = "0.1.0a2" authors = [ { name="Akshay Patel", email="akshaybishnoi@protonmail.com" }, ] diff --git a/src/threadx/__init__.py b/src/threadx/__init__.py index cd11393..d7ad56b 100644 --- a/src/threadx/__init__.py +++ b/src/threadx/__init__.py @@ -1 +1,3 @@ -from .threadx import thread, x, stop \ No newline at end of file +from .threadx import thread, x, stop + +__all__ = ['thread', 'x', 'stop'] \ No newline at end of file