-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
43 lines (39 loc) · 1.33 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "spacytextblob"
version = "5.0.0"
description = "A TextBlob sentiment analysis pipeline component for spaCy."
readme = "README.md"
license = "MIT"
keywords = ["python", "spacy", "textblob", "nlp"]
requires-python = ">=3.9"
dependencies = [
"spacy>=3.0.0",
"textblob>=0.18.0.post0",
]
maintainers = [
{name = "Sam Edwardes", email = "edwardes.s@gmail.com"}
]
[project.urls]
Homepage = "https://spacytextblob.netlify.app/"
Documentation = "https://spacytextblob.netlify.app/"
Repository = "https://github.com/SamEdwardes/spacytextblob"
Issues = "https://github.com/SamEdwardes/spacytextblob/issues"
Changelog = "https://github.com/SamEdwardes/spacytextblob/blob/main/docs/changelog.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"ipykernel>=6.29.5",
"mdx-include>=1.4.2",
"mkdocs-material>=9.5.40",
"pytest>=8.3.3",
"pytest-xdist>=3.6.1",
"rich>=13.9.2",
"textblob-fr>=0.2.0",
"en-core-web-sm",
"fr-core-news-sm",
]
[tool.uv.sources]
en-core-web-sm = { url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl" }
fr-core-news-sm = { url = "https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-3.8.0/fr_core_news_sm-3.8.0-py3-none-any.whl" }