Skip to content

Commit 6e20d56

Browse files
authored
Merge pull request #7 from dylan-profiler/feature/perf-split-data-mods
v0.1.0
2 parents ba44d96 + c5c706b commit 6e20d56

File tree

44 files changed

+428647
-428554
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+428647
-428554
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="tangled_up_in_unicode",
18-
version="0.0.7",
18+
version="0.1.0",
1919
description="Access to the Unicode Character Database (UCD)",
2020
url="https://github.com/dylan-profiler/tangled-up-in-unicode",
2121
license="BSD 4-Clause",

src/tangled_up_in_unicode/__init__.py

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
1-
from tangled_up_in_unicode.tangled_up_in_unicode_13_0_0 import *
1+
from tangled_up_in_unicode.tangled_up_in_unicode_13_0_0 import (
2+
name,
3+
decimal,
4+
digit,
5+
numeric,
6+
combining,
7+
mirrored,
8+
decomposition,
9+
category,
10+
bidirectional,
11+
east_asian_width,
12+
script,
13+
block,
14+
age,
15+
unidata_version,
16+
combining_long,
17+
category_long,
18+
bidirectional_long,
19+
east_asian_width_long,
20+
script_abbr,
21+
block_abbr,
22+
age_long,
23+
prop_list,
24+
titlecase,
25+
lowercase,
26+
uppercase,
27+
)
28+
29+
__version__ = "0.1.0"
230

331
__all__ = [
432
"name",
@@ -26,4 +54,5 @@
2654
"titlecase",
2755
"lowercase",
2856
"uppercase",
57+
"__version__",
2958
]

0 commit comments

Comments
 (0)