We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efad180 commit a45ba2cCopy full SHA for a45ba2c
1 file changed
pyproject.toml
@@ -0,0 +1,30 @@
1
+[build-system]
2
+requires = ["setuptools>=68", "wheel"]
3
+build-backend = "setuptools.build_meta"
4
+
5
+[project]
6
+name = "text-preprocessing"
7
+version = "1.1.2"
8
+authors = [
9
+ { name = "The ARTFL Project", email = "clovisgladstone@gmail.com" },
10
+]
11
+requires-python = ">=3.11"
12
+dependencies = [
13
+ "unidecode",
14
+ "PyStemmer",
15
+ "spacy>=3.8",
16
+ "orjson",
17
+ "lz4",
18
+ "regex",
19
+ "torch",
20
+ "multiprocess",
21
22
23
+[project.optional-dependencies]
24
+dev = [
25
+ "pytest",
26
27
28
+[tool.setuptools.packages.find]
29
+where = ["."]
30
+include = ["text_preprocessing*"]
0 commit comments