-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from evtn/dev
2.0: wordstreamer integration
- Loading branch information
Showing
5 changed files
with
137 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "rgx" | ||
version = "1.4.5" | ||
version = "2.0.0" | ||
description = "Typed, simple and readable regexp generation" | ||
authors = ["Dmitry Gritsenko <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -11,6 +11,7 @@ keywords = ["regex", "regexp", "regular expressions"] | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
wordstreamer = "^0.1.3" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
from .entities import pattern, NamedPattern as named, group_reference as reference, ConditionalPattern as conditional, char_range | ||
from .entities import ( | ||
pattern, | ||
NamedPattern as named, | ||
group_reference as reference, | ||
ConditionalPattern as conditional, | ||
char_range as char_range, | ||
Context as Context, | ||
) |
Oops, something went wrong.