-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.cfg
80 lines (74 loc) · 1.93 KB
/
setup.cfg
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
[metadata]
name = pymusas
version = attr:pymusas.__version__
author = UCREL Research Centre
author_email = [email protected]
description = PYthon Multilingual Ucrel Semantic Analysis System
long_description = file: README.md
long_description_content_type = text/markdown
url = https://ucrel.github.io/pymusas/
project_urls =
Source = https://github.com/UCREL/pymusas
license = Apache License 2.0
license_files =
LICENSE
classifiers =
Development Status :: 3 - Alpha
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
[options]
packages = find:
include_package_data = True
zip_safe = false
python_requires = >=3.7
install_requires =
spacy>=3.1.4 ; python_version >= '3.10'
spacy>=3.0 ; python_version < '3.10'
srsly>=2.4.1,<3.0.0
tqdm>=4.50.0,<5.0.0
requests>=2.13.0,<3.0.0
click<8.1.0
[options.packages.find]
exclude=
*.tests
*.tests.*
tests.*
tests
[options.package_data]
* = py.typed
[options.extras_require]
tests =
pytest>=6.0.0,!=7.1.0
coverage[toml]>=6.0.0
responses>=0.16.0
mypy==0.910
types-requests
flake8>=3.8.0,<3.10.0
pydoc-markdown>=4.0.0,<4.6.0
isort>=5.5.4
[options.entry_points]
spacy_factories =
pymusas_rule_based_tagger = pymusas.spacy_api.taggers.rule_based:RuleBasedTagger
[flake8]
ignore = E266, E501, W503, W293
max-line-length = 200
select = B,C,E,F,W,T4,B9
exclude =
resources
benchmarks
tests/data
pymusas/rule_tagger_util.py
test.py
statistics = true
count = true
show_source = true