Skip to content

Commit

Permalink
updated __init__ and package version
Browse files Browse the repository at this point in the history
  • Loading branch information
withjak committed Sep 22, 2024
1 parent 75b2930 commit 5be9035
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "threadx"
version = "0.1.0a1"
version = "0.1.0a2"
authors = [
{ name="Akshay Patel", email="[email protected]" },
]
Expand Down
4 changes: 3 additions & 1 deletion src/threadx/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
from .threadx import thread, x, stop
from .threadx import thread, x, stop

__all__ = ['thread', 'x', 'stop']

0 comments on commit 5be9035

Please sign in to comment.