-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (80 loc) · 2.44 KB
/
Copy pathpyproject.toml
File metadata and controls
96 lines (80 loc) · 2.44 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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
authors = ["Craig Trim <craigtrim@gmail.com>"]
maintainers = ["Craig Trim <craigtrim@gmail.com>"]
description = "Linguistic Pattern Lab using spaCy"
license = "MIT"
name = "lingpatlab"
readme = "README.md"
version = "1.1.1"
keywords = [
"nlp",
"spacy",
"natural-language-processing",
"text-analysis",
"linguistic-patterns",
"tokenization",
"parsing",
"entity-extraction",
"named-entity-recognition",
"pos-tagging",
"dependency-parsing",
"wordnet",
"text-segmentation",
"anaphora-resolution",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
]
repository = "https://github.com/craigtrim/lingpatlab"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/craigtrim/lingpatlab/issues"
[tool.poetry.dependencies]
python = "^3.10"
spacy = "3.8.2"
unicodedata2 = "*"
wordnet-lookup = "*"
[tool.poetry.extras]
linting = []
testing = []
packaging = []
[tool.poetry.group.linting.dependencies]
autopep8 = "*"
flakeheaven = "*"
pre-commit = "^2.20.0"
[tool.poetry.group.testing.dependencies]
pytest = "*"
pytest-cov = "^4.1.0"
plac = "*"
[tool.poetry.group.packaging.dependencies]
# keep the dependency here -- this way `parse-text/Dockerfile` won't require it in a build
en_core_web_sm = { path = "resources/lib/en_core_web_sm-3.8.0.tar.gz" }
[tool.poetry.build]
generate-setup-file = true
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.flakeheaven]
base = "https://raw.githubusercontent.com/flakeheaven/flakeheaven/main/pyproject.toml"
exclude = ["__init__.py", "README.md", "setup.py", ".venv", ".git"]
format = "grouped"
max_line_length = 500
show_source = true
[tool.flakeheaven.plugins]
# F401 (Missing Import)
# F403 (Unable to Detect Undefined Names)
"flake8-*" = ["+*"]
flake8-bandit = ["-*", "+S1??"]
flake8-docstrings = ["-*"]
pyflakes = ["+*", "-F401", "-F403"]