-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
40 lines (35 loc) · 983 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
38
39
40
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "spacy-to-naf"
version = "0.2.0"
description = "spaCy-to-NAF converter"
authors = [
{name = "Emiel van Miltenburg"},
{name = "Marten Postma"},
{name = "Sophie Arnoult"},
{email = "s.i.arnoult@vu.nl"}
]
maintainers = [
{name = "Sophie Arnoult"},
{email = "s.i.arnoult@vu.nl"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License"
]
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["nafparserpy", "spacy"]
license = {text = "Apache License 2.0"}
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
repository = "https://github.com/cltl/SpaCy-to-NAF"
changelog = "https://github.com/cltl/SpaCy-to-NAF/blob/master/Changelog.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]