freemt commited on
Commit
52d97bd
·
1 Parent(s): b255d8d

Update debee added, heading to pypi 0.1.0

Browse files
Files changed (6) hide show
  1. .gitignore +3 -1
  2. litbee/fetch_upload.py +13 -5
  3. litbee/options.py +2 -2
  4. litbee/utils.py +4 -2
  5. poetry.lock +226 -147
  6. pyproject.toml +4 -2
.gitignore CHANGED
@@ -140,4 +140,6 @@ cython_debug/
140
  *.swp
141
  links/
142
  # .gitignore
143
- node_modules
 
 
 
140
  *.swp
141
  links/
142
  # .gitignore
143
+ node_modules
144
+ links
145
+ .gitignore
litbee/fetch_upload.py CHANGED
@@ -11,7 +11,10 @@ import pandas as pd
11
  import streamlit as st
12
  from dzbee import dzbee
13
  from ezbee import ezbee
14
- from ezbee.gen_pairs import gen_pairs # aset2pairs?
 
 
 
15
  from fastlid import fastlid
16
  from icecream import ic
17
  from loguru import logger as loggu
@@ -155,7 +158,7 @@ def fetch_upload():
155
  logger.debug("list2[:3]: %s", list2[:3])
156
 
157
  logger.info("Processing data... %s", state.ns.beetype)
158
- if state.ns.beetype in ["ezbee", "dzbee"]:
159
  # bug in json_de2zh.gen_cmat for dzbee and
160
  # fast_scores.gen_cmat for ezbee
161
  # temp fix:
@@ -163,11 +166,13 @@ def fetch_upload():
163
  fastlid.set_languages = ["de", "zh"]
164
  elif state.ns.beetype in ["ezbee"]:
165
  fastlid.set_languages = ["en", "zh"]
 
 
166
  else:
167
  fastlid.set_languages = None
168
 
169
  try:
170
- # aset = ezbee(
171
  aset = globals()[state.ns.beetype](
172
  list1,
173
  list2,
@@ -182,7 +187,9 @@ def fetch_upload():
182
  st.write("Collecting inputs...")
183
  return None
184
  else:
185
- st.write(f"{state.ns.beetype} coming soon...")
 
 
186
  return None
187
 
188
  # fastlid changed logger.level to 20
@@ -194,7 +201,8 @@ def fetch_upload():
194
 
195
  # st.write(aset)
196
 
197
- aligned_pairs = gen_pairs(list1, list2, aset)
 
198
  if aligned_pairs:
199
  logger.debug("%s...%s", aligned_pairs[:3], aligned_pairs[-3:])
200
  # logger.debug("aligned_pairs[:20]: \n%s", aligned_pairs[:20])
 
11
  import streamlit as st
12
  from dzbee import dzbee
13
  from ezbee import ezbee
14
+ from debee import debee
15
+
16
+ # from ezbee.gen_pairs import gen_pairs # aset2pairs?
17
+ from aset2pairs import aset2pairs
18
  from fastlid import fastlid
19
  from icecream import ic
20
  from loguru import logger as loggu
 
158
  logger.debug("list2[:3]: %s", list2[:3])
159
 
160
  logger.info("Processing data... %s", state.ns.beetype)
161
+ if state.ns.beetype in ["ezbee", "dzbee", "debee"]:
162
  # bug in json_de2zh.gen_cmat for dzbee and
163
  # fast_scores.gen_cmat for ezbee
164
  # temp fix:
 
166
  fastlid.set_languages = ["de", "zh"]
167
  elif state.ns.beetype in ["ezbee"]:
168
  fastlid.set_languages = ["en", "zh"]
169
+ elif state.ns.beetype in ["debee"]:
170
+ fastlid.set_languages = ["de", "en"]
171
  else:
172
  fastlid.set_languages = None
173
 
174
  try:
175
+ # aset = ezbee/dzbee/debee
176
  aset = globals()[state.ns.beetype](
177
  list1,
178
  list2,
 
187
  st.write("Collecting inputs...")
188
  return None
189
  else:
190
+ filename = inspect.currentframe().f_code.co_filename
191
+ lineno = inspect.currentframe().f_lineno
192
+ st.write(f"{state.ns.beetype} coming soon...{filenmae}:{lineno}")
193
  return None
194
 
195
  # fastlid changed logger.level to 20
 
201
 
202
  # st.write(aset)
203
 
204
+ # aligned_pairs = gen_pairs(list1, list2, aset)
205
+ aligned_pairs = aset2pairs(list1, list2, aset)
206
  if aligned_pairs:
207
  logger.debug("%s...%s", aligned_pairs[:3], aligned_pairs[-3:])
208
  # logger.debug("aligned_pairs[:20]: \n%s", aligned_pairs[:20])
litbee/options.py CHANGED
@@ -39,7 +39,7 @@ def options():
39
  unsafe_allow_html=True,
40
  )
41
 
42
- beetype_list = ["ezbee", "dzbee", "xbee"]
43
 
44
  col1, col2 = st.columns(2)
45
 
@@ -47,7 +47,7 @@ def options():
47
  beetype = st.sidebar.radio("Pick a bee", beetype_list)
48
  state.ns.beetype = beetype
49
 
50
- if beetype not in ["ezbee", "dzbee"]:
51
  st.write("Coming soon")
52
  return None
53
 
 
39
  unsafe_allow_html=True,
40
  )
41
 
42
+ beetype_list = ["ezbee", "dzbee", "debee", "xbee"]
43
 
44
  col1, col2 = st.columns(2)
45
 
 
47
  beetype = st.sidebar.radio("Pick a bee", beetype_list)
48
  state.ns.beetype = beetype
49
 
50
+ if beetype not in ["ezbee", "dzbee", "debee"]:
51
  st.write("Coming soon")
52
  return None
53
 
litbee/utils.py CHANGED
@@ -30,6 +30,8 @@ msg = dedent(
30
 
31
  * dzbee: german-chinese, fast para-align
32
 
 
 
33
  * xbee/bumblebee: other language pairs, normal para-align
34
 
35
  The algorithm for fast para-align is home-brewn. Two sent-align algorithms are used: one based on Gale-Church, the other machine learning.
@@ -71,7 +73,7 @@ def instructions():
71
  logger.debug("instructions exit")
72
 
73
 
74
- about = dedent(
75
  f"""
76
  # litbee {__version__}
77
 
@@ -82,5 +84,5 @@ about = dedent(
82
  menu_items = {
83
  "Get Help": "https://bumblebee.freeforums.net/thread/5/litbee",
84
  "Report a bug": "https://github.com/ffreemt/litbee/issues",
85
- "About": about,
86
  }
 
30
 
31
  * dzbee: german-chinese, fast para-align
32
 
33
+ * debee: german-english, fast para-align
34
+
35
  * xbee/bumblebee: other language pairs, normal para-align
36
 
37
  The algorithm for fast para-align is home-brewn. Two sent-align algorithms are used: one based on Gale-Church, the other machine learning.
 
73
  logger.debug("instructions exit")
74
 
75
 
76
+ about_msg = dedent(
77
  f"""
78
  # litbee {__version__}
79
 
 
84
  menu_items = {
85
  "Get Help": "https://bumblebee.freeforums.net/thread/5/litbee",
86
  "Report a bug": "https://github.com/ffreemt/litbee/issues",
87
+ "About": about_msg,
88
  }
poetry.lock CHANGED
@@ -199,11 +199,11 @@ python-versions = "*"
199
 
200
  [[package]]
201
  name = "certifi"
202
- version = "2022.5.18"
203
  description = "Python package for providing Mozilla's CA Bundle."
204
  category = "main"
205
  optional = false
206
- python-versions = ">=3.5"
207
 
208
  [[package]]
209
  name = "cffi"
@@ -273,6 +273,44 @@ python-versions = "*"
273
  [package.extras]
274
  test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"]
275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  [[package]]
277
  name = "debugpy"
278
  version = "1.6.0"
@@ -299,8 +337,8 @@ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
299
 
300
  [[package]]
301
  name = "dzbee"
302
- version = "0.1.1a2"
303
- description = "pack_name descr"
304
  category = "main"
305
  optional = false
306
  python-versions = ">=3.8.3,<4.0.0"
@@ -311,13 +349,16 @@ cchardet = ">=2.1.7,<3.0.0"
311
  icecream = ">=2.1.1,<3.0.0"
312
  install = ">=1.3.5,<2.0.0"
313
  Jinja2 = ">=3.1.2,<4.0.0"
314
- json-de2zh = "0.1.1-alpha.0"
315
  logzero = ">=1.7.0,<2.0.0"
316
  Morfessor = ">=2.0.6,<3.0.0"
317
  polyglot = ">=16.7.4,<17.0.0"
318
  typer = ">=0.4.1,<0.5.0"
319
  XlsxWriter = ">=3.0.3,<4.0.0"
320
 
 
 
 
321
  [[package]]
322
  name = "entrypoints"
323
  version = "0.4"
@@ -354,28 +395,16 @@ python-versions = "*"
354
 
355
  [[package]]
356
  name = "ezbee"
357
- version = "0.1.0a3"
358
- description = "engnlish-chinese dualtext aligner"
359
  category = "main"
360
  optional = false
361
- python-versions = ">=3.8.3,<4.0.0"
362
 
363
  [package.dependencies]
364
- cchardet = ">=2.1.7,<3.0.0"
365
- cmat2aset = "0.1.0a7"
366
- environs = ">=9.5.0,<10.0.0"
367
- fast-scores = "0.1.3a3"
368
  icecream = ">=2.1.1,<3.0.0"
369
  install = ">=1.3.5,<2.0.0"
370
- Jinja2 = ">=3.1.1,<4.0.0"
371
  logzero = ">=1.7.0,<2.0.0"
372
- Morfessor = ">=2.0.6,<3.0.0"
373
- polyglot = ">=16.7.4,<17.0.0"
374
- typer = ">=0.4.0,<0.5.0"
375
- XlsxWriter = ">=3.0.3,<4.0.0"
376
-
377
- [package.extras]
378
- plot = ["holoviews (>=1.14.8,<2.0.0)", "plotly (>=5.6.0,<6.0.0)", "seaborn (>=0.11.2,<0.12.0)"]
379
 
380
  [[package]]
381
  name = "fast-scores"
@@ -502,7 +531,7 @@ python-versions = ">=3.5"
502
 
503
  [[package]]
504
  name = "importlib-metadata"
505
- version = "4.11.3"
506
  description = "Read metadata from Python packages"
507
  category = "main"
508
  optional = false
@@ -672,7 +701,7 @@ python-versions = ">=3.6"
672
 
673
  [[package]]
674
  name = "json-de2zh"
675
- version = "0.1.1a0"
676
  description = "pack_name descr"
677
  category = "main"
678
  optional = false
@@ -991,7 +1020,7 @@ test = ["pytest", "coverage", "requests", "testpath", "nbval", "selenium", "pyte
991
 
992
  [[package]]
993
  name = "numpy"
994
- version = "1.22.3"
995
  description = "NumPy is the fundamental package for array computing with Python."
996
  category = "main"
997
  optional = false
@@ -1152,14 +1181,14 @@ python-versions = ">=3.7"
1152
 
1153
  [[package]]
1154
  name = "psutil"
1155
- version = "5.9.0"
1156
  description = "Cross-platform lib for process and system monitoring in Python."
1157
  category = "main"
1158
  optional = false
1159
- python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
1160
 
1161
  [package.extras]
1162
- test = ["ipaddress", "mock", "unittest2", "enum34", "pywin32", "wmi"]
1163
 
1164
  [[package]]
1165
  name = "ptyprocess"
@@ -1382,7 +1411,7 @@ python-versions = ">=3.7"
1382
 
1383
  [[package]]
1384
  name = "pyzmq"
1385
- version = "22.3.0"
1386
  description = "Python bindings for 0MQ"
1387
  category = "main"
1388
  optional = false
@@ -1420,7 +1449,7 @@ use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"]
1420
 
1421
  [[package]]
1422
  name = "rich"
1423
- version = "12.4.3"
1424
  description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
1425
  category = "main"
1426
  optional = false
@@ -1583,7 +1612,7 @@ tests = ["pytest", "typeguard", "pygments", "littleutils", "cython"]
1583
 
1584
  [[package]]
1585
  name = "streamlit"
1586
- version = "1.9.0"
1587
  description = "The fastest way to build data apps in Python"
1588
  category = "main"
1589
  optional = false
@@ -1601,7 +1630,7 @@ numpy = "*"
1601
  packaging = "*"
1602
  pandas = ">=0.21.0"
1603
  pillow = ">=6.2.0"
1604
- protobuf = ">=3.6.0,<3.11 || >3.11"
1605
  pyarrow = "*"
1606
  pydeck = ">=0.1.dev5"
1607
  pympler = ">=0.9"
@@ -1610,6 +1639,7 @@ requests = "*"
1610
  semver = "*"
1611
  toml = "*"
1612
  tornado = ">=5.0"
 
1613
  tzlocal = "*"
1614
  validators = "*"
1615
  watchdog = {version = "*", markers = "platform_system != \"Darwin\""}
@@ -1693,7 +1723,7 @@ python-versions = ">=3.7"
1693
 
1694
  [[package]]
1695
  name = "tomlkit"
1696
- version = "0.10.2"
1697
  description = "Style preserving TOML library"
1698
  category = "dev"
1699
  optional = false
@@ -1847,6 +1877,14 @@ category = "main"
1847
  optional = false
1848
  python-versions = "*"
1849
 
 
 
 
 
 
 
 
 
1850
  [[package]]
1851
  name = "widgetsnbextension"
1852
  version = "3.6.0"
@@ -1869,6 +1907,20 @@ python-versions = ">=3.5"
1869
  [package.extras]
1870
  dev = ["pytest (>=4.6.2)", "black (>=19.3b0)"]
1871
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1872
  [[package]]
1873
  name = "xlsxwriter"
1874
  version = "3.0.3"
@@ -1892,7 +1944,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-
1892
  [metadata]
1893
  lock-version = "1.1"
1894
  python-versions = "^3.8.3"
1895
- content-hash = "f8d280c8a7963b1fc7863c0531aa86923eb37d05e6218f24e27ee18299276c97"
1896
 
1897
  [metadata.files]
1898
  about-time = [
@@ -2023,8 +2075,8 @@ cchardet = [
2023
  {file = "cchardet-2.1.7.tar.gz", hash = "sha256:c428b6336545053c2589f6caf24ea32276c6664cb86db817e03a94c60afa0eaf"},
2024
  ]
2025
  certifi = [
2026
- {file = "certifi-2022.5.18-py3-none-any.whl", hash = "sha256:8d15a5a7fde18536a249c49e07e8e462b8fc13de21b3c80e8a68315dfa227c99"},
2027
- {file = "certifi-2022.5.18.tar.gz", hash = "sha256:6ae10321df3e464305a46e997da41ea56c1d311fb9ff1dd4e04d6f14653ec63a"},
2028
  ]
2029
  cffi = [
2030
  {file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"},
@@ -2098,6 +2150,14 @@ commonmark = [
2098
  {file = "commonmark-0.9.1-py2.py3-none-any.whl", hash = "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9"},
2099
  {file = "commonmark-0.9.1.tar.gz", hash = "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60"},
2100
  ]
 
 
 
 
 
 
 
 
2101
  debugpy = [
2102
  {file = "debugpy-1.6.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:eb1946efac0c0c3d411cea0b5ac772fbde744109fd9520fb0c5a51979faf05ad"},
2103
  {file = "debugpy-1.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e3513399177dd37af4c1332df52da5da1d0c387e5927dc4c0709e26ee7302e8f"},
@@ -2127,8 +2187,8 @@ defusedxml = [
2127
  {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"},
2128
  ]
2129
  dzbee = [
2130
- {file = "dzbee-0.1.1a2-py3-none-any.whl", hash = "sha256:fe1c4e80be236a66639dba2ed7f1c71497def05e9a6eea838264ea9d92543426"},
2131
- {file = "dzbee-0.1.1a2.tar.gz", hash = "sha256:24dadb5fa6606d4fd54d28eb34db2126ce078a4a8b5032090dba2856ed906091"},
2132
  ]
2133
  entrypoints = [
2134
  {file = "entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f"},
@@ -2143,8 +2203,8 @@ executing = [
2143
  {file = "executing-0.8.3.tar.gz", hash = "sha256:c6554e21c6b060590a6d3be4b82fb78f8f0194d809de5ea7df1c093763311501"},
2144
  ]
2145
  ezbee = [
2146
- {file = "ezbee-0.1.0a3-py3-none-any.whl", hash = "sha256:3a119d4a6fbd39deda87db79996a38819e31761d793e7621c8405552434563e8"},
2147
- {file = "ezbee-0.1.0a3.tar.gz", hash = "sha256:9cc7b36e81cea3cef6ecdf203bc03f98043d9ff59729fd038b1bf8d6191eb300"},
2148
  ]
2149
  fast-scores = [
2150
  {file = "fast-scores-0.1.3a3.tar.gz", hash = "sha256:0a76f7f349ffbf507f7b1a2fd527be4a8bf633e36b7b9b45795192afd7aaac02"},
@@ -2185,8 +2245,8 @@ idna = [
2185
  {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
2186
  ]
2187
  importlib-metadata = [
2188
- {file = "importlib_metadata-4.11.3-py3-none-any.whl", hash = "sha256:1208431ca90a8cca1a6b8af391bb53c1a2db74e5d1cef6ddced95d4b2062edc6"},
2189
- {file = "importlib_metadata-4.11.3.tar.gz", hash = "sha256:ea4c597ebf37142f827b8f39299579e31685c31d3a438b59f469406afd0f2539"},
2190
  ]
2191
  importlib-resources = [
2192
  {file = "importlib_resources-5.7.1-py3-none-any.whl", hash = "sha256:e447dc01619b1e951286f3929be820029d48c75eb25d265c28b92a16548212b8"},
@@ -2229,8 +2289,8 @@ joblib = [
2229
  {file = "joblib-1.1.0.tar.gz", hash = "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35"},
2230
  ]
2231
  json-de2zh = [
2232
- {file = "json_de2zh-0.1.1a0-py3-none-any.whl", hash = "sha256:ae20c3296912e8c9a013ed53ff361cc18e0f1524f2641fb86e2c4e65994dc199"},
2233
- {file = "json_de2zh-0.1.1a0.tar.gz", hash = "sha256:ff15c6418d52340d401dc69854c6d90b088aa5d535930c4d73ea4d0aca8161ca"},
2234
  ]
2235
  jsonschema = [
2236
  {file = "jsonschema-4.5.1-py3-none-any.whl", hash = "sha256:71b5e39324422543546572954ce71c67728922c104902cb7ce252e522235b33f"},
@@ -2383,26 +2443,28 @@ notebook = [
2383
  {file = "notebook-6.4.11.tar.gz", hash = "sha256:709b1856a564fe53054796c80e17a67262071c86bfbdfa6b96aaa346113c555a"},
2384
  ]
2385
  numpy = [
2386
- {file = "numpy-1.22.3-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:92bfa69cfbdf7dfc3040978ad09a48091143cffb778ec3b03fa170c494118d75"},
2387
- {file = "numpy-1.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8251ed96f38b47b4295b1ae51631de7ffa8260b5b087808ef09a39a9d66c97ab"},
2388
- {file = "numpy-1.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48a3aecd3b997bf452a2dedb11f4e79bc5bfd21a1d4cc760e703c31d57c84b3e"},
2389
- {file = "numpy-1.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3bae1a2ed00e90b3ba5f7bd0a7c7999b55d609e0c54ceb2b076a25e345fa9f4"},
2390
- {file = "numpy-1.22.3-cp310-cp310-win32.whl", hash = "sha256:f950f8845b480cffe522913d35567e29dd381b0dc7e4ce6a4a9f9156417d2430"},
2391
- {file = "numpy-1.22.3-cp310-cp310-win_amd64.whl", hash = "sha256:08d9b008d0156c70dc392bb3ab3abb6e7a711383c3247b410b39962263576cd4"},
2392
- {file = "numpy-1.22.3-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:201b4d0552831f7250a08d3b38de0d989d6f6e4658b709a02a73c524ccc6ffce"},
2393
- {file = "numpy-1.22.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f8c1f39caad2c896bc0018f699882b345b2a63708008be29b1f355ebf6f933fe"},
2394
- {file = "numpy-1.22.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:568dfd16224abddafb1cbcce2ff14f522abe037268514dd7e42c6776a1c3f8e5"},
2395
- {file = "numpy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ca688e1b9b95d80250bca34b11a05e389b1420d00e87a0d12dc45f131f704a1"},
2396
- {file = "numpy-1.22.3-cp38-cp38-win32.whl", hash = "sha256:e7927a589df200c5e23c57970bafbd0cd322459aa7b1ff73b7c2e84d6e3eae62"},
2397
- {file = "numpy-1.22.3-cp38-cp38-win_amd64.whl", hash = "sha256:07a8c89a04997625236c5ecb7afe35a02af3896c8aa01890a849913a2309c676"},
2398
- {file = "numpy-1.22.3-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:2c10a93606e0b4b95c9b04b77dc349b398fdfbda382d2a39ba5a822f669a0123"},
2399
- {file = "numpy-1.22.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fade0d4f4d292b6f39951b6836d7a3c7ef5b2347f3c420cd9820a1d90d794802"},
2400
- {file = "numpy-1.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bfb1bb598e8229c2d5d48db1860bcf4311337864ea3efdbe1171fb0c5da515d"},
2401
- {file = "numpy-1.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97098b95aa4e418529099c26558eeb8486e66bd1e53a6b606d684d0c3616b168"},
2402
- {file = "numpy-1.22.3-cp39-cp39-win32.whl", hash = "sha256:fdf3c08bce27132395d3c3ba1503cac12e17282358cb4bddc25cc46b0aca07aa"},
2403
- {file = "numpy-1.22.3-cp39-cp39-win_amd64.whl", hash = "sha256:639b54cdf6aa4f82fe37ebf70401bbb74b8508fddcf4797f9fe59615b8c5813a"},
2404
- {file = "numpy-1.22.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c34ea7e9d13a70bf2ab64a2532fe149a9aced424cd05a2c4ba662fd989e3e45f"},
2405
- {file = "numpy-1.22.3.zip", hash = "sha256:dbc7601a3b7472d559dc7b933b18b4b66f9aa7452c120e87dfb33d02008c8a18"},
 
 
2406
  ]
2407
  packaging = [
2408
  {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
@@ -2537,38 +2599,38 @@ protobuf = [
2537
  {file = "protobuf-3.20.1.tar.gz", hash = "sha256:adc31566d027f45efe3f44eeb5b1f329da43891634d61c75a5944e9be6dd42c9"},
2538
  ]
2539
  psutil = [
2540
- {file = "psutil-5.9.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:55ce319452e3d139e25d6c3f85a1acf12d1607ddedea5e35fb47a552c051161b"},
2541
- {file = "psutil-5.9.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:7336292a13a80eb93c21f36bde4328aa748a04b68c13d01dfddd67fc13fd0618"},
2542
- {file = "psutil-5.9.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:cb8d10461c1ceee0c25a64f2dd54872b70b89c26419e147a05a10b753ad36ec2"},
2543
- {file = "psutil-5.9.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:7641300de73e4909e5d148e90cc3142fb890079e1525a840cf0dfd39195239fd"},
2544
- {file = "psutil-5.9.0-cp27-none-win32.whl", hash = "sha256:ea42d747c5f71b5ccaa6897b216a7dadb9f52c72a0fe2b872ef7d3e1eacf3ba3"},
2545
- {file = "psutil-5.9.0-cp27-none-win_amd64.whl", hash = "sha256:ef216cc9feb60634bda2f341a9559ac594e2eeaadd0ba187a4c2eb5b5d40b91c"},
2546
- {file = "psutil-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:90a58b9fcae2dbfe4ba852b57bd4a1dded6b990a33d6428c7614b7d48eccb492"},
2547
- {file = "psutil-5.9.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff0d41f8b3e9ebb6b6110057e40019a432e96aae2008951121ba4e56040b84f3"},
2548
- {file = "psutil-5.9.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:742c34fff804f34f62659279ed5c5b723bb0195e9d7bd9907591de9f8f6558e2"},
2549
- {file = "psutil-5.9.0-cp310-cp310-win32.whl", hash = "sha256:8293942e4ce0c5689821f65ce6522ce4786d02af57f13c0195b40e1edb1db61d"},
2550
- {file = "psutil-5.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:9b51917c1af3fa35a3f2dabd7ba96a2a4f19df3dec911da73875e1edaf22a40b"},
2551
- {file = "psutil-5.9.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e9805fed4f2a81de98ae5fe38b75a74c6e6ad2df8a5c479594c7629a1fe35f56"},
2552
- {file = "psutil-5.9.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c51f1af02334e4b516ec221ee26b8fdf105032418ca5a5ab9737e8c87dafe203"},
2553
- {file = "psutil-5.9.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32acf55cb9a8cbfb29167cd005951df81b567099295291bcfd1027365b36591d"},
2554
- {file = "psutil-5.9.0-cp36-cp36m-win32.whl", hash = "sha256:e5c783d0b1ad6ca8a5d3e7b680468c9c926b804be83a3a8e95141b05c39c9f64"},
2555
- {file = "psutil-5.9.0-cp36-cp36m-win_amd64.whl", hash = "sha256:d62a2796e08dd024b8179bd441cb714e0f81226c352c802fca0fd3f89eeacd94"},
2556
- {file = "psutil-5.9.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3d00a664e31921009a84367266b35ba0aac04a2a6cad09c550a89041034d19a0"},
2557
- {file = "psutil-5.9.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7779be4025c540d1d65a2de3f30caeacc49ae7a2152108adeaf42c7534a115ce"},
2558
- {file = "psutil-5.9.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:072664401ae6e7c1bfb878c65d7282d4b4391f1bc9a56d5e03b5a490403271b5"},
2559
- {file = "psutil-5.9.0-cp37-cp37m-win32.whl", hash = "sha256:df2c8bd48fb83a8408c8390b143c6a6fa10cb1a674ca664954de193fdcab36a9"},
2560
- {file = "psutil-5.9.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1d7b433519b9a38192dfda962dd8f44446668c009833e1429a52424624f408b4"},
2561
- {file = "psutil-5.9.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c3400cae15bdb449d518545cbd5b649117de54e3596ded84aacabfbb3297ead2"},
2562
- {file = "psutil-5.9.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2237f35c4bbae932ee98902a08050a27821f8f6dfa880a47195e5993af4702d"},
2563
- {file = "psutil-5.9.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1070a9b287846a21a5d572d6dddd369517510b68710fca56b0e9e02fd24bed9a"},
2564
- {file = "psutil-5.9.0-cp38-cp38-win32.whl", hash = "sha256:76cebf84aac1d6da5b63df11fe0d377b46b7b500d892284068bacccf12f20666"},
2565
- {file = "psutil-5.9.0-cp38-cp38-win_amd64.whl", hash = "sha256:3151a58f0fbd8942ba94f7c31c7e6b310d2989f4da74fcbf28b934374e9bf841"},
2566
- {file = "psutil-5.9.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:539e429da49c5d27d5a58e3563886057f8fc3868a5547b4f1876d9c0f007bccf"},
2567
- {file = "psutil-5.9.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58c7d923dc209225600aec73aa2c4ae8ea33b1ab31bc11ef8a5933b027476f07"},
2568
- {file = "psutil-5.9.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3611e87eea393f779a35b192b46a164b1d01167c9d323dda9b1e527ea69d697d"},
2569
- {file = "psutil-5.9.0-cp39-cp39-win32.whl", hash = "sha256:4e2fb92e3aeae3ec3b7b66c528981fd327fb93fd906a77215200404444ec1845"},
2570
- {file = "psutil-5.9.0-cp39-cp39-win_amd64.whl", hash = "sha256:7d190ee2eaef7831163f254dc58f6d2e2a22e27382b936aab51c835fc080c3d3"},
2571
- {file = "psutil-5.9.0.tar.gz", hash = "sha256:869842dbd66bb80c3217158e629d6fceaecc3a3166d3d1faee515b05dd26ca25"},
2572
  ]
2573
  ptyprocess = [
2574
  {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
@@ -2717,53 +2779,63 @@ pywinpty = [
2717
  {file = "pywinpty-2.0.5.tar.gz", hash = "sha256:e125d3f1804d8804952b13e33604ad2ca8b9b2cac92b27b521c005d1604794f8"},
2718
  ]
2719
  pyzmq = [
2720
- {file = "pyzmq-22.3.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:6b217b8f9dfb6628f74b94bdaf9f7408708cb02167d644edca33f38746ca12dd"},
2721
- {file = "pyzmq-22.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2841997a0d85b998cbafecb4183caf51fd19c4357075dfd33eb7efea57e4c149"},
2722
- {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:f89468059ebc519a7acde1ee50b779019535db8dcf9b8c162ef669257fef7a93"},
2723
- {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea12133df25e3a6918718fbb9a510c6ee5d3fdd5a346320421aac3882f4feeea"},
2724
- {file = "pyzmq-22.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76c532fd68b93998aab92356be280deec5de8f8fe59cd28763d2cc8a58747b7f"},
2725
- {file = "pyzmq-22.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f907c7359ce8bf7f7e63c82f75ad0223384105f5126f313400b7e8004d9b33c3"},
2726
- {file = "pyzmq-22.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:902319cfe23366595d3fa769b5b751e6ee6750a0a64c5d9f757d624b2ac3519e"},
2727
- {file = "pyzmq-22.3.0-cp310-cp310-win32.whl", hash = "sha256:67db33bea0a29d03e6eeec55a8190e033318cee3cbc732ba8fd939617cbf762d"},
2728
- {file = "pyzmq-22.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:7661fc1d5cb73481cf710a1418a4e1e301ed7d5d924f91c67ba84b2a1b89defd"},
2729
- {file = "pyzmq-22.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79244b9e97948eaf38695f4b8e6fc63b14b78cc37f403c6642ba555517ac1268"},
2730
- {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab888624ed68930442a3f3b0b921ad7439c51ba122dbc8c386e6487a658e4a4e"},
2731
- {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18cd854b423fce44951c3a4d3e686bac8f1243d954f579e120a1714096637cc0"},
2732
- {file = "pyzmq-22.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:de8df0684398bd74ad160afdc2a118ca28384ac6f5e234eb0508858d8d2d9364"},
2733
- {file = "pyzmq-22.3.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:62bcade20813796c426409a3e7423862d50ff0639f5a2a95be4b85b09a618666"},
2734
- {file = "pyzmq-22.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:ea5a79e808baef98c48c884effce05c31a0698c1057de8fc1c688891043c1ce1"},
2735
- {file = "pyzmq-22.3.0-cp36-cp36m-win32.whl", hash = "sha256:3c1895c95be92600233e476fe283f042e71cf8f0b938aabf21b7aafa62a8dac9"},
2736
- {file = "pyzmq-22.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:851977788b9caa8ed011f5f643d3ee8653af02c5fc723fa350db5125abf2be7b"},
2737
- {file = "pyzmq-22.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b4ebed0977f92320f6686c96e9e8dd29eed199eb8d066936bac991afc37cbb70"},
2738
- {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42abddebe2c6a35180ca549fadc7228d23c1e1f76167c5ebc8a936b5804ea2df"},
2739
- {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c1e41b32d6f7f9c26bc731a8b529ff592f31fc8b6ef2be9fa74abd05c8a342d7"},
2740
- {file = "pyzmq-22.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:be4e0f229cf3a71f9ecd633566bd6f80d9fa6afaaff5489492be63fe459ef98c"},
2741
- {file = "pyzmq-22.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:08c4e315a76ef26eb833511ebf3fa87d182152adf43dedee8d79f998a2162a0b"},
2742
- {file = "pyzmq-22.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:badb868fff14cfd0e200eaa845887b1011146a7d26d579aaa7f966c203736b92"},
2743
- {file = "pyzmq-22.3.0-cp37-cp37m-win32.whl", hash = "sha256:7c58f598d9fcc52772b89a92d72bf8829c12d09746a6d2c724c5b30076c1f11d"},
2744
- {file = "pyzmq-22.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2b97502c16a5ec611cd52410bdfaab264997c627a46b0f98d3f666227fd1ea2d"},
2745
- {file = "pyzmq-22.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d728b08448e5ac3e4d886b165385a262883c34b84a7fe1166277fe675e1c197a"},
2746
- {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:480b9931bfb08bf8b094edd4836271d4d6b44150da051547d8c7113bf947a8b0"},
2747
- {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7dc09198e4073e6015d9a8ea093fc348d4e59de49382476940c3dd9ae156fba8"},
2748
- {file = "pyzmq-22.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ca6cd58f62a2751728016d40082008d3b3412a7f28ddfb4a2f0d3c130f69e74"},
2749
- {file = "pyzmq-22.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:468bd59a588e276961a918a3060948ae68f6ff5a7fa10bb2f9160c18fe341067"},
2750
- {file = "pyzmq-22.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c88fa7410e9fc471e0858638f403739ee869924dd8e4ae26748496466e27ac59"},
2751
- {file = "pyzmq-22.3.0-cp38-cp38-win32.whl", hash = "sha256:c0f84360dcca3481e8674393bdf931f9f10470988f87311b19d23cda869bb6b7"},
2752
- {file = "pyzmq-22.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:f762442bab706fd874064ca218b33a1d8e40d4938e96c24dafd9b12e28017f45"},
2753
- {file = "pyzmq-22.3.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:954e73c9cd4d6ae319f1c936ad159072b6d356a92dcbbabfd6e6204b9a79d356"},
2754
- {file = "pyzmq-22.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f43b4a2e6218371dd4f41e547bd919ceeb6ebf4abf31a7a0669cd11cd91ea973"},
2755
- {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:acebba1a23fb9d72b42471c3771b6f2f18dcd46df77482612054bd45c07dfa36"},
2756
- {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cf98fd7a6c8aaa08dbc699ffae33fd71175696d78028281bc7b832b26f00ca57"},
2757
- {file = "pyzmq-22.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d072f7dfbdb184f0786d63bda26e8a0882041b1e393fbe98940395f7fab4c5e2"},
2758
- {file = "pyzmq-22.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:53f4fd13976789ffafedd4d46f954c7bb01146121812b72b4ddca286034df966"},
2759
- {file = "pyzmq-22.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d1b5d457acbadcf8b27561deeaa386b0217f47626b29672fa7bd31deb6e91e1b"},
2760
- {file = "pyzmq-22.3.0-cp39-cp39-win32.whl", hash = "sha256:e6a02cf7271ee94674a44f4e62aa061d2d049001c844657740e156596298b70b"},
2761
- {file = "pyzmq-22.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d3dcb5548ead4f1123851a5ced467791f6986d68c656bc63bfff1bf9e36671e2"},
2762
- {file = "pyzmq-22.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3a4c9886d61d386b2b493377d980f502186cd71d501fffdba52bd2a0880cef4f"},
2763
- {file = "pyzmq-22.3.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:80e043a89c6cadefd3a0712f8a1322038e819ebe9dbac7eca3bce1721bcb63bf"},
2764
- {file = "pyzmq-22.3.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1621e7a2af72cced1f6ec8ca8ca91d0f76ac236ab2e8828ac8fe909512d566cb"},
2765
- {file = "pyzmq-22.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d6157793719de168b199194f6b6173f0ccd3bf3499e6870fac17086072e39115"},
2766
- {file = "pyzmq-22.3.0.tar.gz", hash = "sha256:8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c"},
 
 
 
 
 
 
 
 
 
 
2767
  ]
2768
  regex = [
2769
  {file = "regex-2022.4.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f86aef546add4ff1202e1f31e9bb54f9268f17d996b2428877283146bf9bc013"},
@@ -2846,8 +2918,8 @@ requests = [
2846
  {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"},
2847
  ]
2848
  rich = [
2849
- {file = "rich-12.4.3-py3-none-any.whl", hash = "sha256:26ef784599a9ab905ade34ff28904e4fbe9bce16e02c33c78b0229551104c146"},
2850
- {file = "rich-12.4.3.tar.gz", hash = "sha256:e7550ca19aec51b216ae4c34bfce82e94a0c79bdbf95cafbf42f343d0fb3f45a"},
2851
  ]
2852
  scikit-learn = [
2853
  {file = "scikit-learn-1.1.1.tar.gz", hash = "sha256:3e77b71e8e644f86c8b5be7f1c285ef597de4c384961389ee3e9ca36c445b256"},
@@ -2997,8 +3069,8 @@ stack-data = [
2997
  {file = "stack_data-0.2.0.tar.gz", hash = "sha256:45692d41bd633a9503a5195552df22b583caf16f0b27c4e58c98d88c8b648e12"},
2998
  ]
2999
  streamlit = [
3000
- {file = "streamlit-1.9.0-py2.py3-none-any.whl", hash = "sha256:dd7718147cfc8eb4c5a18b36b67a36de37454e7fe49ac72470ad2a43771aef13"},
3001
- {file = "streamlit-1.9.0.tar.gz", hash = "sha256:543c809843b0561f5aa3850af2e90f7a6df17c80906b09ab76bab498846e6797"},
3002
  ]
3003
  streamlit-aggrid = [
3004
  {file = "streamlit-aggrid-0.2.3.post2.tar.gz", hash = "sha256:c67936173a3b7fa9878b55d45a6c4ccfa8505680767e34a026aa27c4cea9b9f7"},
@@ -3029,8 +3101,8 @@ tomli = [
3029
  {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
3030
  ]
3031
  tomlkit = [
3032
- {file = "tomlkit-0.10.2-py3-none-any.whl", hash = "sha256:905cf92c2111ef80d355708f47ac24ad1b6fc2adc5107455940088c9bbecaedb"},
3033
- {file = "tomlkit-0.10.2.tar.gz", hash = "sha256:30d54c0b914e595f3d10a87888599eab5321a2a69abc773bbefff51599b72db6"},
3034
  ]
3035
  toolz = [
3036
  {file = "toolz-0.11.2-py3-none-any.whl", hash = "sha256:a5700ce83414c64514d82d60bcda8aabfde092d1c1a8663f9200c07fdcc6da8f"},
@@ -3145,6 +3217,9 @@ webencodings = [
3145
  {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
3146
  {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
3147
  ]
 
 
 
3148
  widgetsnbextension = [
3149
  {file = "widgetsnbextension-3.6.0-py2.py3-none-any.whl", hash = "sha256:4fd321cad39fdcf8a8e248a657202d42917ada8e8ed5dd3f60f073e0d54ceabd"},
3150
  {file = "widgetsnbextension-3.6.0.tar.gz", hash = "sha256:e84a7a9fcb9baf3d57106e184a7389a8f8eb935bf741a5eb9d60aa18cc029a80"},
@@ -3153,6 +3228,10 @@ win32-setctime = [
3153
  {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"},
3154
  {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"},
3155
  ]
 
 
 
 
3156
  xlsxwriter = [
3157
  {file = "XlsxWriter-3.0.3-py3-none-any.whl", hash = "sha256:df0aefe5137478d206847eccf9f114715e42aaea077e6a48d0e8a2152e983010"},
3158
  {file = "XlsxWriter-3.0.3.tar.gz", hash = "sha256:e89f4a1d2fa2c9ea15cde77de95cd3fd8b0345d0efb3964623f395c8c4988b7f"},
 
199
 
200
  [[package]]
201
  name = "certifi"
202
+ version = "2022.5.18.1"
203
  description = "Python package for providing Mozilla's CA Bundle."
204
  category = "main"
205
  optional = false
206
+ python-versions = ">=3.6"
207
 
208
  [[package]]
209
  name = "cffi"
 
273
  [package.extras]
274
  test = ["flake8 (==3.7.8)", "hypothesis (==3.55.3)"]
275
 
276
+ [[package]]
277
+ name = "de2en"
278
+ version = "0.1.1a1"
279
+ description = "pack_name descr"
280
+ category = "main"
281
+ optional = false
282
+ python-versions = ">=3.8.3,<4.0.0"
283
+
284
+ [package.dependencies]
285
+ dzbee = ">=0.1.1-alpha.2,<0.2.0"
286
+ ezbee = ">=0.1.0,<0.2.0"
287
+ icecream = ">=2.1.1,<3.0.0"
288
+ install = ">=1.3.5,<2.0.0"
289
+ logzero = ">=1.7.0,<2.0.0"
290
+ word2word = ">=1.0.0,<2.0.0"
291
+
292
+ [[package]]
293
+ name = "debee"
294
+ version = "0.1.0a2"
295
+ description = "pack_name descr "
296
+ category = "main"
297
+ optional = false
298
+ python-versions = ">=3.8.3,<4.0.0"
299
+
300
+ [package.dependencies]
301
+ aset2pairs = ">=0.1.0,<0.2.0"
302
+ cmat2aset = "0.1.0a7"
303
+ de2en = ">=0.1.1-alpha.1,<0.2.0"
304
+ fast-scores = ">=0.1.2,<0.2.0"
305
+ fastlid = ">=0.1.7,<0.2.0"
306
+ icecream = ">=2.1.1,<3.0.0"
307
+ install = ">=1.3.5,<2.0.0"
308
+ json-de2zh = ">=0.1.1a0,<0.2.0"
309
+ logzero = ">=1.7.0,<2.0.0"
310
+ set-loglevel = ">=0.1.2,<0.2.0"
311
+ simplemma = ">=0.3.0,<0.4.0"
312
+ typer = ">=0.4.1,<0.5.0"
313
+
314
  [[package]]
315
  name = "debugpy"
316
  version = "1.6.0"
 
337
 
338
  [[package]]
339
  name = "dzbee"
340
+ version = "0.1.1a3"
341
+ description = "pack_name descr "
342
  category = "main"
343
  optional = false
344
  python-versions = ">=3.8.3,<4.0.0"
 
349
  icecream = ">=2.1.1,<3.0.0"
350
  install = ">=1.3.5,<2.0.0"
351
  Jinja2 = ">=3.1.2,<4.0.0"
352
+ json-de2zh = ">=0.1.1,<0.2.0"
353
  logzero = ">=1.7.0,<2.0.0"
354
  Morfessor = ">=2.0.6,<3.0.0"
355
  polyglot = ">=16.7.4,<17.0.0"
356
  typer = ">=0.4.1,<0.5.0"
357
  XlsxWriter = ">=3.0.3,<4.0.0"
358
 
359
+ [package.extras]
360
+ plot = ["holoviews (>=1.14.9,<2.0.0)", "plotly (>=5.8.0,<6.0.0)", "seaborn (>=0.11.2,<0.12.0)"]
361
+
362
  [[package]]
363
  name = "entrypoints"
364
  version = "0.4"
 
395
 
396
  [[package]]
397
  name = "ezbee"
398
+ version = "0.1.0"
399
+ description = "pack_name descr "
400
  category = "main"
401
  optional = false
402
+ python-versions = ">=3.8,<4.0"
403
 
404
  [package.dependencies]
 
 
 
 
405
  icecream = ">=2.1.1,<3.0.0"
406
  install = ">=1.3.5,<2.0.0"
 
407
  logzero = ">=1.7.0,<2.0.0"
 
 
 
 
 
 
 
408
 
409
  [[package]]
410
  name = "fast-scores"
 
531
 
532
  [[package]]
533
  name = "importlib-metadata"
534
+ version = "4.11.4"
535
  description = "Read metadata from Python packages"
536
  category = "main"
537
  optional = false
 
701
 
702
  [[package]]
703
  name = "json-de2zh"
704
+ version = "0.1.1"
705
  description = "pack_name descr"
706
  category = "main"
707
  optional = false
 
1020
 
1021
  [[package]]
1022
  name = "numpy"
1023
+ version = "1.22.4"
1024
  description = "NumPy is the fundamental package for array computing with Python."
1025
  category = "main"
1026
  optional = false
 
1181
 
1182
  [[package]]
1183
  name = "psutil"
1184
+ version = "5.9.1"
1185
  description = "Cross-platform lib for process and system monitoring in Python."
1186
  category = "main"
1187
  optional = false
1188
+ python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
1189
 
1190
  [package.extras]
1191
+ test = ["ipaddress", "mock", "enum34", "pywin32", "wmi"]
1192
 
1193
  [[package]]
1194
  name = "ptyprocess"
 
1411
 
1412
  [[package]]
1413
  name = "pyzmq"
1414
+ version = "23.0.0"
1415
  description = "Python bindings for 0MQ"
1416
  category = "main"
1417
  optional = false
 
1449
 
1450
  [[package]]
1451
  name = "rich"
1452
+ version = "12.4.4"
1453
  description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
1454
  category = "main"
1455
  optional = false
 
1612
 
1613
  [[package]]
1614
  name = "streamlit"
1615
+ version = "1.9.2"
1616
  description = "The fastest way to build data apps in Python"
1617
  category = "main"
1618
  optional = false
 
1630
  packaging = "*"
1631
  pandas = ">=0.21.0"
1632
  pillow = ">=6.2.0"
1633
+ protobuf = ">=3.12,<4"
1634
  pyarrow = "*"
1635
  pydeck = ">=0.1.dev5"
1636
  pympler = ">=0.9"
 
1639
  semver = "*"
1640
  toml = "*"
1641
  tornado = ">=5.0"
1642
+ typing-extensions = "*"
1643
  tzlocal = "*"
1644
  validators = "*"
1645
  watchdog = {version = "*", markers = "platform_system != \"Darwin\""}
 
1723
 
1724
  [[package]]
1725
  name = "tomlkit"
1726
+ version = "0.11.0"
1727
  description = "Style preserving TOML library"
1728
  category = "dev"
1729
  optional = false
 
1877
  optional = false
1878
  python-versions = "*"
1879
 
1880
+ [[package]]
1881
+ name = "wget"
1882
+ version = "3.2"
1883
+ description = "pure python download utility"
1884
+ category = "main"
1885
+ optional = false
1886
+ python-versions = "*"
1887
+
1888
  [[package]]
1889
  name = "widgetsnbextension"
1890
  version = "3.6.0"
 
1907
  [package.extras]
1908
  dev = ["pytest (>=4.6.2)", "black (>=19.3b0)"]
1909
 
1910
+ [[package]]
1911
+ name = "word2word"
1912
+ version = "1.0.0"
1913
+ description = "Easy-to-use word translations for 3,564 language pairs"
1914
+ category = "main"
1915
+ optional = false
1916
+ python-versions = ">=3.6"
1917
+
1918
+ [package.dependencies]
1919
+ numpy = "*"
1920
+ requests = "*"
1921
+ tqdm = "*"
1922
+ wget = "*"
1923
+
1924
  [[package]]
1925
  name = "xlsxwriter"
1926
  version = "3.0.3"
 
1944
  [metadata]
1945
  lock-version = "1.1"
1946
  python-versions = "^3.8.3"
1947
+ content-hash = "0e77dc51a86fe9e1a57d0fd288cf202f64858022c13d9431beb77549265985e3"
1948
 
1949
  [metadata.files]
1950
  about-time = [
 
2075
  {file = "cchardet-2.1.7.tar.gz", hash = "sha256:c428b6336545053c2589f6caf24ea32276c6664cb86db817e03a94c60afa0eaf"},
2076
  ]
2077
  certifi = [
2078
+ {file = "certifi-2022.5.18.1-py3-none-any.whl", hash = "sha256:f1d53542ee8cbedbe2118b5686372fb33c297fcd6379b050cca0ef13a597382a"},
2079
+ {file = "certifi-2022.5.18.1.tar.gz", hash = "sha256:9c5705e395cd70084351dd8ad5c41e65655e08ce46f2ec9cf6c2c08390f71eb7"},
2080
  ]
2081
  cffi = [
2082
  {file = "cffi-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962"},
 
2150
  {file = "commonmark-0.9.1-py2.py3-none-any.whl", hash = "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9"},
2151
  {file = "commonmark-0.9.1.tar.gz", hash = "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60"},
2152
  ]
2153
+ de2en = [
2154
+ {file = "de2en-0.1.1a1-py3-none-any.whl", hash = "sha256:bb872ee0b0c5c659bc4ce439960fcc841c9f800d4e8183ec288e89f353749bb6"},
2155
+ {file = "de2en-0.1.1a1.tar.gz", hash = "sha256:9af3dc1b42cacff5e4dbd88ea9c4646bd736d6f8179ed9f2fae7abf8c54604a1"},
2156
+ ]
2157
+ debee = [
2158
+ {file = "debee-0.1.0a2-py3-none-any.whl", hash = "sha256:79731686d1a899cc4ce8cc59ed47ac424444bb5171700bde58280c4791ceccc9"},
2159
+ {file = "debee-0.1.0a2.tar.gz", hash = "sha256:e3ea6adee47a1a78cb7f3a1de7f2fc295d3740b6459fd2d27fb641502fb3b273"},
2160
+ ]
2161
  debugpy = [
2162
  {file = "debugpy-1.6.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:eb1946efac0c0c3d411cea0b5ac772fbde744109fd9520fb0c5a51979faf05ad"},
2163
  {file = "debugpy-1.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e3513399177dd37af4c1332df52da5da1d0c387e5927dc4c0709e26ee7302e8f"},
 
2187
  {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"},
2188
  ]
2189
  dzbee = [
2190
+ {file = "dzbee-0.1.1a3-py3-none-any.whl", hash = "sha256:f0acb0413ce15f8577f2bb0a49513d3786f7af644c39aec7367e1941a14edc07"},
2191
+ {file = "dzbee-0.1.1a3.tar.gz", hash = "sha256:f0aab560229c3560c9614a61fdb71fc519402e935f0e632ce12e98516bd59fa0"},
2192
  ]
2193
  entrypoints = [
2194
  {file = "entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f"},
 
2203
  {file = "executing-0.8.3.tar.gz", hash = "sha256:c6554e21c6b060590a6d3be4b82fb78f8f0194d809de5ea7df1c093763311501"},
2204
  ]
2205
  ezbee = [
2206
+ {file = "ezbee-0.1.0-py3-none-any.whl", hash = "sha256:f396278a8dae131a9e096067d0a60a4e1062a79d95b342191725cca690f03616"},
2207
+ {file = "ezbee-0.1.0.tar.gz", hash = "sha256:8e703cadd1d9c8073f60913c331a8fd239ec29d9a294e36ddaa0977dd5f552df"},
2208
  ]
2209
  fast-scores = [
2210
  {file = "fast-scores-0.1.3a3.tar.gz", hash = "sha256:0a76f7f349ffbf507f7b1a2fd527be4a8bf633e36b7b9b45795192afd7aaac02"},
 
2245
  {file = "idna-3.3.tar.gz", hash = "sha256:9d643ff0a55b762d5cdb124b8eaa99c66322e2157b69160bc32796e824360e6d"},
2246
  ]
2247
  importlib-metadata = [
2248
+ {file = "importlib_metadata-4.11.4-py3-none-any.whl", hash = "sha256:c58c8eb8a762858f49e18436ff552e83914778e50e9d2f1660535ffb364552ec"},
2249
+ {file = "importlib_metadata-4.11.4.tar.gz", hash = "sha256:5d26852efe48c0a32b0509ffbc583fda1a2266545a78d104a6f4aff3db17d700"},
2250
  ]
2251
  importlib-resources = [
2252
  {file = "importlib_resources-5.7.1-py3-none-any.whl", hash = "sha256:e447dc01619b1e951286f3929be820029d48c75eb25d265c28b92a16548212b8"},
 
2289
  {file = "joblib-1.1.0.tar.gz", hash = "sha256:4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35"},
2290
  ]
2291
  json-de2zh = [
2292
+ {file = "json_de2zh-0.1.1-py3-none-any.whl", hash = "sha256:ba35f03c3235f048f1f7f2ef73ebe53659723f36f54c2651d27aa8632c7b1e22"},
2293
+ {file = "json_de2zh-0.1.1.tar.gz", hash = "sha256:53b52b59402d1a38fba6afcfdf4c157f09f65dadc4f19a0b029d543074e83d98"},
2294
  ]
2295
  jsonschema = [
2296
  {file = "jsonschema-4.5.1-py3-none-any.whl", hash = "sha256:71b5e39324422543546572954ce71c67728922c104902cb7ce252e522235b33f"},
 
2443
  {file = "notebook-6.4.11.tar.gz", hash = "sha256:709b1856a564fe53054796c80e17a67262071c86bfbdfa6b96aaa346113c555a"},
2444
  ]
2445
  numpy = [
2446
+ {file = "numpy-1.22.4-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:ba9ead61dfb5d971d77b6c131a9dbee62294a932bf6a356e48c75ae684e635b3"},
2447
+ {file = "numpy-1.22.4-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:1ce7ab2053e36c0a71e7a13a7475bd3b1f54750b4b433adc96313e127b870887"},
2448
+ {file = "numpy-1.22.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7228ad13744f63575b3a972d7ee4fd61815b2879998e70930d4ccf9ec721dce0"},
2449
+ {file = "numpy-1.22.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:43a8ca7391b626b4c4fe20aefe79fec683279e31e7c79716863b4b25021e0e74"},
2450
+ {file = "numpy-1.22.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a911e317e8c826ea632205e63ed8507e0dc877dcdc49744584dfc363df9ca08c"},
2451
+ {file = "numpy-1.22.4-cp310-cp310-win32.whl", hash = "sha256:9ce7df0abeabe7fbd8ccbf343dc0db72f68549856b863ae3dd580255d009648e"},
2452
+ {file = "numpy-1.22.4-cp310-cp310-win_amd64.whl", hash = "sha256:3e1ffa4748168e1cc8d3cde93f006fe92b5421396221a02f2274aab6ac83b077"},
2453
+ {file = "numpy-1.22.4-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:59d55e634968b8f77d3fd674a3cf0b96e85147cd6556ec64ade018f27e9479e1"},
2454
+ {file = "numpy-1.22.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c1d937820db6e43bec43e8d016b9b3165dcb42892ea9f106c70fb13d430ffe72"},
2455
+ {file = "numpy-1.22.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4c5d5eb2ec8da0b4f50c9a843393971f31f1d60be87e0fb0917a49133d257d6"},
2456
+ {file = "numpy-1.22.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64f56fc53a2d18b1924abd15745e30d82a5782b2cab3429aceecc6875bd5add0"},
2457
+ {file = "numpy-1.22.4-cp38-cp38-win32.whl", hash = "sha256:fb7a980c81dd932381f8228a426df8aeb70d59bbcda2af075b627bbc50207cba"},
2458
+ {file = "numpy-1.22.4-cp38-cp38-win_amd64.whl", hash = "sha256:e96d7f3096a36c8754207ab89d4b3282ba7b49ea140e4973591852c77d09eb76"},
2459
+ {file = "numpy-1.22.4-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:4c6036521f11a731ce0648f10c18ae66d7143865f19f7299943c985cdc95afb5"},
2460
+ {file = "numpy-1.22.4-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:b89bf9b94b3d624e7bb480344e91f68c1c6c75f026ed6755955117de00917a7c"},
2461
+ {file = "numpy-1.22.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:2d487e06ecbf1dc2f18e7efce82ded4f705f4bd0cd02677ffccfb39e5c284c7e"},
2462
+ {file = "numpy-1.22.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3eb268dbd5cfaffd9448113539e44e2dd1c5ca9ce25576f7c04a5453edc26fa"},
2463
+ {file = "numpy-1.22.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37431a77ceb9307c28382c9773da9f306435135fae6b80b62a11c53cfedd8802"},
2464
+ {file = "numpy-1.22.4-cp39-cp39-win32.whl", hash = "sha256:cc7f00008eb7d3f2489fca6f334ec19ca63e31371be28fd5dad955b16ec285bd"},
2465
+ {file = "numpy-1.22.4-cp39-cp39-win_amd64.whl", hash = "sha256:f0725df166cf4785c0bc4cbfb320203182b1ecd30fee6e541c8752a92df6aa32"},
2466
+ {file = "numpy-1.22.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0791fbd1e43bf74b3502133207e378901272f3c156c4df4954cad833b1380207"},
2467
+ {file = "numpy-1.22.4.zip", hash = "sha256:425b390e4619f58d8526b3dcf656dde069133ae5c240229821f01b5f44ea07af"},
2468
  ]
2469
  packaging = [
2470
  {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"},
 
2599
  {file = "protobuf-3.20.1.tar.gz", hash = "sha256:adc31566d027f45efe3f44eeb5b1f329da43891634d61c75a5944e9be6dd42c9"},
2600
  ]
2601
  psutil = [
2602
+ {file = "psutil-5.9.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:799759d809c31aab5fe4579e50addf84565e71c1dc9f1c31258f159ff70d3f87"},
2603
+ {file = "psutil-5.9.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:9272167b5f5fbfe16945be3db475b3ce8d792386907e673a209da686176552af"},
2604
+ {file = "psutil-5.9.1-cp27-cp27m-win32.whl", hash = "sha256:0904727e0b0a038830b019551cf3204dd48ef5c6868adc776e06e93d615fc5fc"},
2605
+ {file = "psutil-5.9.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e7e10454cb1ab62cc6ce776e1c135a64045a11ec4c6d254d3f7689c16eb3efd2"},
2606
+ {file = "psutil-5.9.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:56960b9e8edcca1456f8c86a196f0c3d8e3e361320071c93378d41445ffd28b0"},
2607
+ {file = "psutil-5.9.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:44d1826150d49ffd62035785a9e2c56afcea66e55b43b8b630d7706276e87f22"},
2608
+ {file = "psutil-5.9.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c7be9d7f5b0d206f0bbc3794b8e16fb7dbc53ec9e40bbe8787c6f2d38efcf6c9"},
2609
+ {file = "psutil-5.9.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd9246e4cdd5b554a2ddd97c157e292ac11ef3e7af25ac56b08b455c829dca8"},
2610
+ {file = "psutil-5.9.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:29a442e25fab1f4d05e2655bb1b8ab6887981838d22effa2396d584b740194de"},
2611
+ {file = "psutil-5.9.1-cp310-cp310-win32.whl", hash = "sha256:20b27771b077dcaa0de1de3ad52d22538fe101f9946d6dc7869e6f694f079329"},
2612
+ {file = "psutil-5.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:58678bbadae12e0db55186dc58f2888839228ac9f41cc7848853539b70490021"},
2613
+ {file = "psutil-5.9.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:3a76ad658641172d9c6e593de6fe248ddde825b5866464c3b2ee26c35da9d237"},
2614
+ {file = "psutil-5.9.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a6a11e48cb93a5fa606306493f439b4aa7c56cb03fc9ace7f6bfa21aaf07c453"},
2615
+ {file = "psutil-5.9.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:068935df39055bf27a29824b95c801c7a5130f118b806eee663cad28dca97685"},
2616
+ {file = "psutil-5.9.1-cp36-cp36m-win32.whl", hash = "sha256:0f15a19a05f39a09327345bc279c1ba4a8cfb0172cc0d3c7f7d16c813b2e7d36"},
2617
+ {file = "psutil-5.9.1-cp36-cp36m-win_amd64.whl", hash = "sha256:db417f0865f90bdc07fa30e1aadc69b6f4cad7f86324b02aa842034efe8d8c4d"},
2618
+ {file = "psutil-5.9.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:91c7ff2a40c373d0cc9121d54bc5f31c4fa09c346528e6a08d1845bce5771ffc"},
2619
+ {file = "psutil-5.9.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fea896b54f3a4ae6f790ac1d017101252c93f6fe075d0e7571543510f11d2676"},
2620
+ {file = "psutil-5.9.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3054e923204b8e9c23a55b23b6df73a8089ae1d075cb0bf711d3e9da1724ded4"},
2621
+ {file = "psutil-5.9.1-cp37-cp37m-win32.whl", hash = "sha256:d2d006286fbcb60f0b391741f520862e9b69f4019b4d738a2a45728c7e952f1b"},
2622
+ {file = "psutil-5.9.1-cp37-cp37m-win_amd64.whl", hash = "sha256:b14ee12da9338f5e5b3a3ef7ca58b3cba30f5b66f7662159762932e6d0b8f680"},
2623
+ {file = "psutil-5.9.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:19f36c16012ba9cfc742604df189f2f28d2720e23ff7d1e81602dbe066be9fd1"},
2624
+ {file = "psutil-5.9.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:944c4b4b82dc4a1b805329c980f270f170fdc9945464223f2ec8e57563139cf4"},
2625
+ {file = "psutil-5.9.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b6750a73a9c4a4e689490ccb862d53c7b976a2a35c4e1846d049dcc3f17d83b"},
2626
+ {file = "psutil-5.9.1-cp38-cp38-win32.whl", hash = "sha256:a8746bfe4e8f659528c5c7e9af5090c5a7d252f32b2e859c584ef7d8efb1e689"},
2627
+ {file = "psutil-5.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:79c9108d9aa7fa6fba6e668b61b82facc067a6b81517cab34d07a84aa89f3df0"},
2628
+ {file = "psutil-5.9.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:28976df6c64ddd6320d281128817f32c29b539a52bdae5e192537bc338a9ec81"},
2629
+ {file = "psutil-5.9.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b88f75005586131276634027f4219d06e0561292be8bd6bc7f2f00bdabd63c4e"},
2630
+ {file = "psutil-5.9.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:645bd4f7bb5b8633803e0b6746ff1628724668681a434482546887d22c7a9537"},
2631
+ {file = "psutil-5.9.1-cp39-cp39-win32.whl", hash = "sha256:32c52611756096ae91f5d1499fe6c53b86f4a9ada147ee42db4991ba1520e574"},
2632
+ {file = "psutil-5.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:f65f9a46d984b8cd9b3750c2bdb419b2996895b005aefa6cbaba9a143b1ce2c5"},
2633
+ {file = "psutil-5.9.1.tar.gz", hash = "sha256:57f1819b5d9e95cdfb0c881a8a5b7d542ed0b7c522d575706a80bedc848c8954"},
2634
  ]
2635
  ptyprocess = [
2636
  {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
 
2779
  {file = "pywinpty-2.0.5.tar.gz", hash = "sha256:e125d3f1804d8804952b13e33604ad2ca8b9b2cac92b27b521c005d1604794f8"},
2780
  ]
2781
  pyzmq = [
2782
+ {file = "pyzmq-23.0.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:176be6c348dbec04e8e0d41e810743b7084b73e50954a6fedeeafc65d7fa9290"},
2783
+ {file = "pyzmq-23.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ef2d1476cea927ba33a29f59aa128ce3b174e81083cbd091dd3149af741c85d"},
2784
+ {file = "pyzmq-23.0.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:c2394bb857607494c3750b5040f852a1ad7831d7a7907b6106f0af2c70860cef"},
2785
+ {file = "pyzmq-23.0.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fe8807d67456e7cf0e9a33b85e0d05bb9d2977dbdb23977e4cc2b843633618fd"},
2786
+ {file = "pyzmq-23.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be3425dfdb9c46dc62d490fc1a6142a5f3dc6605ebb9048ae675056ef621413c"},
2787
+ {file = "pyzmq-23.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cda55ff0a7566405fb29ca38db1829fecb4c041b8dc3f91754f337bb7b27cbd8"},
2788
+ {file = "pyzmq-23.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2e4d70d34112997a32c8193fae2579aec854745f8730031e5d84cc579fd98ff"},
2789
+ {file = "pyzmq-23.0.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f3daabbe42ca31712e29d906dfa4bf1890341d2fd5178de118bc9977a8d2b23b"},
2790
+ {file = "pyzmq-23.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e7ae3e520bd182a0cbfff3cc69dda3a2c26f69847e81bd3f090ed04471fc1282"},
2791
+ {file = "pyzmq-23.0.0-cp310-cp310-win32.whl", hash = "sha256:1d480d48253f61ff90115b8069ed32f51a0907eb19101c4a5ae0b9a5973e40ad"},
2792
+ {file = "pyzmq-23.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:7eca5902ff41575d9a26f91fc750018b7eb129600ea600fe69ce852fbdfab4e2"},
2793
+ {file = "pyzmq-23.0.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b2a4af5e6fa85ee1743c725b46579f8de0b97024eb5ae1a0b5c5711adc436665"},
2794
+ {file = "pyzmq-23.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:591b455546d34bb96aa453dd9666bddb8c81314e23dbf2606f9614acf7e73d9f"},
2795
+ {file = "pyzmq-23.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bdd008629293a0d4f00b516841ac0df89f17a64bc2d83bcfa48212d3f3b3ca1a"},
2796
+ {file = "pyzmq-23.0.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:df0b05fa4321b090abe5601dea9b1c8933c06f496588ccb397a0b1f9dfe32ebe"},
2797
+ {file = "pyzmq-23.0.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:12a53f5c13edf12547ce495afebdd5ab11c1b67ea078a941b21e13161783741a"},
2798
+ {file = "pyzmq-23.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:cb45b7ea577283b547b907a3389d62ca2eaddaf725fbb79cd360802440fa9c91"},
2799
+ {file = "pyzmq-23.0.0-cp36-cp36m-win32.whl", hash = "sha256:0a787f7870cba38d655c68ea7ae14bb6c3e9e19bb618d0c2412513321eeaeb80"},
2800
+ {file = "pyzmq-23.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:536491ad640448f14d8aa2dc497c354a348f216eb23513bf5aa0ac40e2b02577"},
2801
+ {file = "pyzmq-23.0.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5eaf7e0841d3d8d1d92838c8b56f98cb9bf35b14bcbe4efa281e4812ef4be728"},
2802
+ {file = "pyzmq-23.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21792f4d0fcc5040978ee211c033e915d8b6608ea8a5b33fe197a04f0d43e991"},
2803
+ {file = "pyzmq-23.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a37f0ec88e220326803084208d80229218b309d728954ab747ab21cca33424aa"},
2804
+ {file = "pyzmq-23.0.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:9622d9560a6fd8d589816cdcec6946642cb4e070b3f68be1d3779b52cf240f73"},
2805
+ {file = "pyzmq-23.0.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:434044eec7f9df08fc5ca5c9bdd1a4bb08663679d43ebe7b9849713956f4d85f"},
2806
+ {file = "pyzmq-23.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:12eac2294d48ee27d1eaef7e214acedb394e4c95e3a1f6e4467099b82d58ef73"},
2807
+ {file = "pyzmq-23.0.0-cp37-cp37m-win32.whl", hash = "sha256:07d2008e51718fba60641e5d1a0646b222b7929f16f6e7cf0834b8439f42c9e8"},
2808
+ {file = "pyzmq-23.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b8528aefceb787f41ad429f3210a3c6b52e99f85413416e3d0c9e6d035f8ac"},
2809
+ {file = "pyzmq-23.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3f3807e81bf51d4c63eb12a21920614e0e840645418e9f2e3b5ffdd5991b3415"},
2810
+ {file = "pyzmq-23.0.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:011a45c846ec69a3671ed15893b74b6ad608800c89ac6d0f0411e2137c6b313d"},
2811
+ {file = "pyzmq-23.0.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b97dc1273f16f85a38cff6668a07b636ef14e30591039efbfd21f5f91efae964"},
2812
+ {file = "pyzmq-23.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8951830d6a00636b3af478091f9668ecc486f1dad01b975527957fd1d8c31bfd"},
2813
+ {file = "pyzmq-23.0.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5619f6598d6fd30778053ae2daa48a7c54029816648b908270b751411fd52e74"},
2814
+ {file = "pyzmq-23.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0a89b9860d2171bcf674648dc8186db9cf3b773ad3c0610a2c7bf189cf3560b6"},
2815
+ {file = "pyzmq-23.0.0-cp38-cp38-win32.whl", hash = "sha256:0258563bf69f6ca305204354f171e0627a9bf8fe78c9d4f63a5e2447035cbb4b"},
2816
+ {file = "pyzmq-23.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:9feb7ccd426ff2158ce79f4c87a8a1600ed4f77e65e2fffda2b42638b2bc73e4"},
2817
+ {file = "pyzmq-23.0.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:e9631c6a339843e4f95efb80ff9a1bfaaf3d611ba9677a7a5cc61ffb923b4e06"},
2818
+ {file = "pyzmq-23.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:34b143751e9b2b89cf9b656081f1b2842a563c4c9ffc8465531875daf546e772"},
2819
+ {file = "pyzmq-23.0.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2f227150148e7c3db7ecd8a58500439979f556e15455841a30b6d121755b14bc"},
2820
+ {file = "pyzmq-23.0.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277b3ebc684b369a57a186a9acf629c1b01247eb04d1105536ef2dae5f61168a"},
2821
+ {file = "pyzmq-23.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e2093a97bf3f6008a4be6b5bae8ae3fc409f18373593bef19dd7b381ab8030c"},
2822
+ {file = "pyzmq-23.0.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6c09e6e5c4baf0959287943dc8170624d739ae555d334e896a94d9de01c7bb21"},
2823
+ {file = "pyzmq-23.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8c234aefeef034c5d6de452e2af5173a95ea06315b685db703091e6f937a6e60"},
2824
+ {file = "pyzmq-23.0.0-cp39-cp39-win32.whl", hash = "sha256:7b518ad9cdbaaeb1a9da3444797698871ae2eeae34ff9a656d5150d37e1e42a1"},
2825
+ {file = "pyzmq-23.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:011f26841dd56ed87e464c98023dbbd4c0b3ab8802a045de3ea83e0187eb8145"},
2826
+ {file = "pyzmq-23.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a89285fedbeca483a855a77285453e21e4fc86ef0944bc018ef4b3033aa04ad2"},
2827
+ {file = "pyzmq-23.0.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5a13171268f05d127e31b4c369b753733f67dbb0d765901ef625a115feb5c7de"},
2828
+ {file = "pyzmq-23.0.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cd3f563b98e2a8730c93bdc550f119ae766b2d3da1f0d6a3c7735b59adfa1642"},
2829
+ {file = "pyzmq-23.0.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:e730d490b1421e52b43b1b9f5e1f8c3973499206e188f29b582577531e11033b"},
2830
+ {file = "pyzmq-23.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0de8a7e13ffacfe33c89acc0d7bfa2f5bde94e3f74b7f1e4d43c97ce17864d77"},
2831
+ {file = "pyzmq-23.0.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a64b9cce166396df5f33894074d6515778d48c63aae5ee1abd86d8bbc5a711d8"},
2832
+ {file = "pyzmq-23.0.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e464e7b1be2216eba54b47256c15bf307ae4a656aa0f73becea7b3e7283c5ac2"},
2833
+ {file = "pyzmq-23.0.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:3fa7126d532effee452c0ab395ab3cbef1c06fd6870ab7e681f812ba9e685cfa"},
2834
+ {file = "pyzmq-23.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9273f6d1da1018822f41630fb0f3fe208e8e70e5d5e780795326900cfa22d8b6"},
2835
+ {file = "pyzmq-23.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ca7d77f24644298cbe53bc279eb7ca05f3b8637473d392f0c9f34b37f08b49a"},
2836
+ {file = "pyzmq-23.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8f40604437ec8010f77f7053fd135ccb202d6ca18329903831087cab8dbdab1"},
2837
+ {file = "pyzmq-23.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4d861ae20040afc17adef33053c328667da78d4d3676b2936788fd031665e3a8"},
2838
+ {file = "pyzmq-23.0.0.tar.gz", hash = "sha256:a45f5c0477d12df05ef2e2922b49b7c0ae9d0f4ff9b6bb0d666558df0ef37122"},
2839
  ]
2840
  regex = [
2841
  {file = "regex-2022.4.24-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f86aef546add4ff1202e1f31e9bb54f9268f17d996b2428877283146bf9bc013"},
 
2918
  {file = "requests-2.27.1.tar.gz", hash = "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"},
2919
  ]
2920
  rich = [
2921
+ {file = "rich-12.4.4-py3-none-any.whl", hash = "sha256:d2bbd99c320a2532ac71ff6a3164867884357da3e3301f0240090c5d2fdac7ec"},
2922
+ {file = "rich-12.4.4.tar.gz", hash = "sha256:4c586de507202505346f3e32d1363eb9ed6932f0c2f63184dea88983ff4971e2"},
2923
  ]
2924
  scikit-learn = [
2925
  {file = "scikit-learn-1.1.1.tar.gz", hash = "sha256:3e77b71e8e644f86c8b5be7f1c285ef597de4c384961389ee3e9ca36c445b256"},
 
3069
  {file = "stack_data-0.2.0.tar.gz", hash = "sha256:45692d41bd633a9503a5195552df22b583caf16f0b27c4e58c98d88c8b648e12"},
3070
  ]
3071
  streamlit = [
3072
+ {file = "streamlit-1.9.2-py2.py3-none-any.whl", hash = "sha256:5f7fad405fa7fc9097ae88e5a34c4834f3bcfb49d57521d7d1ec7f966a6cf0a4"},
3073
+ {file = "streamlit-1.9.2.tar.gz", hash = "sha256:8c2952b868fe371e42a49dc54d4dc3f52125d7c3c487a9a822ba01df4fbe8bac"},
3074
  ]
3075
  streamlit-aggrid = [
3076
  {file = "streamlit-aggrid-0.2.3.post2.tar.gz", hash = "sha256:c67936173a3b7fa9878b55d45a6c4ccfa8505680767e34a026aa27c4cea9b9f7"},
 
3101
  {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
3102
  ]
3103
  tomlkit = [
3104
+ {file = "tomlkit-0.11.0-py3-none-any.whl", hash = "sha256:0f4050db66fd445b885778900ce4dd9aea8c90c4721141fde0d6ade893820ef1"},
3105
+ {file = "tomlkit-0.11.0.tar.gz", hash = "sha256:71ceb10c0eefd8b8f11fe34e8a51ad07812cb1dc3de23247425fbc9ddc47b9dd"},
3106
  ]
3107
  toolz = [
3108
  {file = "toolz-0.11.2-py3-none-any.whl", hash = "sha256:a5700ce83414c64514d82d60bcda8aabfde092d1c1a8663f9200c07fdcc6da8f"},
 
3217
  {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
3218
  {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
3219
  ]
3220
+ wget = [
3221
+ {file = "wget-3.2.zip", hash = "sha256:35e630eca2aa50ce998b9b1a127bb26b30dfee573702782aa982f875e3f16061"},
3222
+ ]
3223
  widgetsnbextension = [
3224
  {file = "widgetsnbextension-3.6.0-py2.py3-none-any.whl", hash = "sha256:4fd321cad39fdcf8a8e248a657202d42917ada8e8ed5dd3f60f073e0d54ceabd"},
3225
  {file = "widgetsnbextension-3.6.0.tar.gz", hash = "sha256:e84a7a9fcb9baf3d57106e184a7389a8f8eb935bf741a5eb9d60aa18cc029a80"},
 
3228
  {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"},
3229
  {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"},
3230
  ]
3231
+ word2word = [
3232
+ {file = "word2word-1.0.0-py3-none-any.whl", hash = "sha256:da90491ada0250b4350ed78baa37f44ea6d1b063ed559b594aafef8e5ef0862e"},
3233
+ {file = "word2word-1.0.0.tar.gz", hash = "sha256:f29ef3e2ae80432250cdea50105e46ed19b9c307f2ec7c264d72da79e526c05f"},
3234
+ ]
3235
  xlsxwriter = [
3236
  {file = "XlsxWriter-3.0.3-py3-none-any.whl", hash = "sha256:df0aefe5137478d206847eccf9f114715e42aaea077e6a48d0e8a2152e983010"},
3237
  {file = "XlsxWriter-3.0.3.tar.gz", hash = "sha256:e89f4a1d2fa2c9ea15cde77de95cd3fd8b0345d0efb3964623f395c8c4988b7f"},
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [tool.poetry]
2
  name = "litbee"
3
- version = "0.1.0"
4
  description = "align texts via streamlit "
5
  authors = ["ffreemt"]
6
  license = "MIT"
@@ -16,9 +16,11 @@ set-loglevel = "^0.1.2"
16
  streamlit-multipage = "^0.0.18"
17
  cchardet = "^2.1.7"
18
  streamlit-aggrid = "^0.2.3"
19
- ezbee = "0.1.0a3"
20
  dzbee = "^0.1.1-alpha.2"
21
  loguru = "^0.6.0"
 
 
 
22
 
23
  [tool.poe.executor]
24
  type = "poetry"
 
1
  [tool.poetry]
2
  name = "litbee"
3
+ version = "0.1.0-alpha.2"
4
  description = "align texts via streamlit "
5
  authors = ["ffreemt"]
6
  license = "MIT"
 
16
  streamlit-multipage = "^0.0.18"
17
  cchardet = "^2.1.7"
18
  streamlit-aggrid = "^0.2.3"
 
19
  dzbee = "^0.1.1-alpha.2"
20
  loguru = "^0.6.0"
21
+ streamlit = "^1.9.2"
22
+ debee = "^0.1.0-alpha.2"
23
+ ezbee = "^0.1.0"
24
 
25
  [tool.poe.executor]
26
  type = "poetry"