-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (83 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (83 loc) · 2.15 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quantulum3"
version = "0.10.0"
description = "Extract quantities from unstructured text."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Marco Lagi, nielstron, sohrabtowfighi, grhawk and Rodrigo Castro", email = "n.muendler@web.de" },
]
requires-python = ">=3.9"
dependencies = [
"inflect",
"num2words",
]
keywords = [
"information extraction",
"quantities",
"units",
"measurements",
"nlp",
"natural language processing",
"text mining",
"text processing",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"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 :: Scientific/Engineering",
"Topic :: Text Processing :: Linguistic",
]
[project.optional-dependencies]
classifier = [
"joblib",
"numpy",
"scikit-learn",
"scipy",
"stemming",
"wikipedia",
]
[project.scripts]
quantulum3-training = "quantulum3.scripts.train:main"
[project.urls]
Homepage = "https://github.com/nielstron/quantulum3"
Repository = "https://github.com/nielstron/quantulum3"
Issues = "https://github.com/nielstron/quantulum3/issues"
Changelog = "https://github.com/nielstron/quantulum3/blob/master/CHANGES"
[dependency-groups]
dev = [
"black",
"coverage",
"flake8",
"hypothesis",
"pylint",
"pytest",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["quantulum3*"]
[tool.setuptools.package-data]
quantulum3 = ["*.json", "*.joblib", "_lang/**/*.json", "_lang/**/*.txt", "_lang/**/*.joblib"]
[tool.pytest.ini_options]
testpaths = [
"quantulum3/tests",
"quantulum3/_lang/en_US/tests",
]
[tool.uv]
default-groups = ["dev"]