-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.75 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flashtext-i18n"
version = "3.1.1"
description = "Extract/Replace keywords in sentences. Fork with internationalization fixes for CJK and Unicode."
readme = "README.md"
license = { text = "MIT" }
authors = [
{name = "termdock & Huang Chung Yi", email = "cyh@hcytlog.com"}
]
maintainers = [
{name = "termdock & Huang Chung Yi", email = "cyh@hcytlog.com"}
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: Chinese (Traditional)",
"Natural Language :: Japanese",
"Natural Language :: Korean",
"Topic :: Text Processing :: Linguistic",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["flashtext", "keyword extraction", "keyword replacement", "NLP", "CJK", "i18n", "unicode"]
[project.urls]
Homepage = "https://github.com/termdock/flashtext-i18n"
Repository = "https://github.com/termdock/flashtext-i18n.git"
Issues = "https://github.com/termdock/flashtext-i18n/issues"
Changelog = "https://github.com/termdock/flashtext-i18n/releases"
[tool.setuptools.packages.find]
include = ["flashtext*"]
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["test_*.py"]