forked from josubg/pynaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 942 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
[tool.poetry]
name = "pynaf"
version = "2.0.6"
description = "Read and create NAF annotation Documents."
authors = ["Rodrigo Agerri <[email protected]>, Josu Bermudez <[email protected]>"]
license = "Apache License 2.0 (APL 2.0)"
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: XML',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
]
repository='https://github.com/josubg/pynaf/'
keywords=['NLP', 'XML', 'markup', 'NAF']
readme='README.md'
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.7.3"
lxml = "^4.6.3"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"