-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
61 lines (58 loc) · 1.68 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "sutime"
version = "1.0.1"
description = "A Python wrapper for Stanford CoreNLP's SUTime"
license = "GPL-3.0-or-later"
authors = ["Frank Blechschmidt <contact@frank-blechschmidt.com>"]
readme = "README.md"
homepage = "https://github.com/FraBle/python-sutime"
repository = "https://github.com/FraBle/python-sutime"
documentation = "https://github.com/FraBle/python-sutime"
keywords = [
"stanford",
"corenlp",
"sutime",
"datetime",
"nlp",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing :: Linguistic',
]
packages = [
{ include = "sutime" },
]
include = [
"sutime/jars/stanford-corenlp-sutime-python-1.4.0.jar",
"sutime/pom.xml",
]
[tool.poetry.dependencies]
python = ">=3.6,<4.0"
JPype1 = "^1.1.2"
[tool.poetry.dev-dependencies]
aniso8601 = "^8.0.0"
autopep8 = "^1.5.4"
bandit = "^1.6.2"
doc8 = "^0.8.1"
dodgy = "^0.2.1"
flake8 = "^3.8.4"
pyre-check = "^0.0.57"
pytest = "^6.1.2"
python-dateutil = "^2.8.1"
safety = "^1.9.0"
Sphinx = "^3.2.1"
sphinx-typlog-theme = "^0.8.0"
wemake-python-styleguide = "^0.14.1"
[build-system]
requires = ["poetry>=1.1.4"]
build-backend = "poetry.masonry.api"