-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (40 loc) · 1.28 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
44
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "language-detect"
dependencies = [
"joblib==1.4.2",
"unicodedataplus==16.0.0",
"fuzzywuzzy==0.18.0",
"Levenshtein==0.26.1",
"huggingface-hub==0.26.2",
"scikit-learn==1.5.2",
"pandas==2.2.3",
"regex==2024.9.11"
]
requires-python = ">=3.8"
authors = [
{name = "BCS Team", email = "[email protected]"},
]
maintainers = [
{name = "Kavitha Raju", email = "[email protected]"},
{name = "Gladys Ann Varughese", email = "[email protected]"},
]
description = "This is a language detection library using ML models"
readme = "README.md"
license = {text = "MIT License"}
keywords = ["language detection", "machine learning", "script detection", "natural language processing", "text classification", "multilingual"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
version = "0.0.7"
[project.urls]
Repository = "https://github.com/Bridgeconn/LanguageRecognizer"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
language_detect = ["models/*.joblib", "data/*.py"]