Skip to content

Commit

Permalink
Bump release candidate 5, add with_dataclass to __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fleonce committed Dec 5, 2024
1 parent 01a1cd9 commit e2a7d7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "with-argparse"
description = "A simple but handy Python library to generate a `argparse.ArgumentParser` object from a type-annotated method "
version = "1.0.0rc4"
version = "1.0.0rc5"
license = {text = "Apache 2.0"}
readme = "README.md"

Expand Down
5 changes: 2 additions & 3 deletions with_argparse/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from .impl import with_argparse
from .impl import with_argparse, with_dataclass
from .disable_argparse import no_argparse

__all__ = ["with_argparse", "no_argparse"]

__all__ = ["with_argparse", "no_argparse", "with_dataclass"]

0 comments on commit e2a7d7c

Please sign in to comment.