Skip to content

Commit a45ba2c

Browse files
committed
add missing pyproject.toml
1 parent efad180 commit a45ba2c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)