Skip to content

Commit

Permalink
Merge pull request #7 from dylan-profiler/feature/perf-split-data-mods
Browse files Browse the repository at this point in the history
v0.1.0
  • Loading branch information
sbrugman authored May 10, 2021
2 parents ba44d96 + c5c706b commit 6e20d56
Show file tree
Hide file tree
Showing 44 changed files with 428,647 additions and 428,554 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name="tangled_up_in_unicode",
version="0.0.7",
version="0.1.0",
description="Access to the Unicode Character Database (UCD)",
url="https://github.com/dylan-profiler/tangled-up-in-unicode",
license="BSD 4-Clause",
Expand Down
31 changes: 30 additions & 1 deletion src/tangled_up_in_unicode/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,32 @@
from tangled_up_in_unicode.tangled_up_in_unicode_13_0_0 import *
from tangled_up_in_unicode.tangled_up_in_unicode_13_0_0 import (
name,
decimal,
digit,
numeric,
combining,
mirrored,
decomposition,
category,
bidirectional,
east_asian_width,
script,
block,
age,
unidata_version,
combining_long,
category_long,
bidirectional_long,
east_asian_width_long,
script_abbr,
block_abbr,
age_long,
prop_list,
titlecase,
lowercase,
uppercase,
)

__version__ = "0.1.0"

__all__ = [
"name",
Expand Down Expand Up @@ -26,4 +54,5 @@
"titlecase",
"lowercase",
"uppercase",
"__version__",
]
Loading

0 comments on commit 6e20d56

Please sign in to comment.