-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 923 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "elfen"
version = "1.0.2"
authors = [
{ name="Maximilian Maurer", email="[email protected]" },
]
dependencies = [
"numpy==1.26.4",
"polars==1.10.0",
"Requests==2.32.3",
"scipy==1.14.1",
"spacy==3.7.5",
"spacy_syllables==3.0.2",
"stanza==1.8.2",
"wn==0.9.5",
"fastexcel==0.12.0",
"spacy-transformers==1.3.5"
]
description = "ELFEN - Efficient Linguistic Feature Extraction for Natural Language Datasets"
readme = "README_pypi.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/mmmaurer/elfen"
Issues = "https://github.com/mmmaurer/elfen/issues"
[tool.setuptools]
packages = ["elfen", "elfen.configs"]