-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 1.04 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "syntaxcomp"
version = "0.0.2"
dependencies = [
"conllu~=4.5.3",
"textdistance~=4.6.2",
]
requires-python = ">=3.9"
authors = [
{ name="Elizaveta Klykova", email="lizaklyk@gmail.com" },
]
maintainers = [
{ name="Elizaveta Klykova", email="lizaklyk@gmail.com" },
]
description = "A package for extracting syntactic complexity measures from CoNLL-U annotations."
readme = "README.md"
keywords = [
"complexity", "syntax", "syntactic complexity", "text complexity",
"conllu", "udpipe", "clause extraction", "sentence segmentation",
"clause segmentation"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/eaklykova/syntaxcomp"
Issues = "https://github.com/eaklykova/syntaxcomp/issues"