File size: 661 Bytes
4d52104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[project]
name = "counting-words"
version = "0.1.0"
description = "Counting words in English and Japanese texts demo"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
    "marimo>=0.13.0",
    "polars>=1.27.1",
    "altair>=5.5.0",
    "spacy>=3.8.5",
    "en-core-web-md",
    "ja-core-news-md",
    "transformers>=4.51.3",
]

[tool.uv.sources]
en-core-web-md = { url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_md-3.8.0/en_core_web_md-3.8.0-py3-none-any.whl" }
ja-core-news-md = { url = "https://github.com/explosion/spacy-models/releases/download/ja_core_news_md-3.8.0/ja_core_news_md-3.8.0-py3-none-any.whl" }