-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.78 KB
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
44
45
46
47
48
49
50
51
[project]
name = "spacytextblob"
version = "5.1.0"
description = "A TextBlob sentiment analysis pipeline component for spaCy."
readme = "README.md"
license = "MIT"
keywords = ["python", "spacy", "textblob", "nlp"]
requires-python = ">=3.9, <3.14"
dependencies = ["spacy>=3.8.7", "textblob>=0.18.0.post0"]
maintainers = [{ name = "Sam Edwardes", email = "edwardes.s@gmail.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
]
[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 = ["uv_build>=0.9.5,<0.10.0"]
build-backend = "uv_build"
[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" }
[dependency-groups]
dev = [
"mdx-include>=1.4.2",
"mkdocs-material>=9.6.22",
"pytest>=8.4.2",
"pytest-xdist>=3.8.0",
"rich>=14.2.0",
"textblob-fr>=0.2.0",
"en-core-web-sm",
"fr-core-news-sm",
]