-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
69 lines (62 loc) · 1.67 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
[metadata]
name = spacy-phony
version = 0.2.0-dev
description = phonology in spaCy!
url = https://github.com/direct-phonology/phoNy
author = Nick Budak
author_email = budak@stanford.edu
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Text Processing :: Linguistic
Topic :: Scientific/Engineering
project_urls =
Release notes = https://github.com/direct-phonology/phoNy/releases
Source = https://github.com/direct-phonology/phoNy
[options]
package_dir =
= src
packages = find:
include_package_data = true
python_requires = >=3.6
install_requires =
spacy>=3
setup_requires =
setuptools
setuptools-scm
[options.packages.find]
where = src
[options.extras_require]
dev =
black
coverage
isort
mypy
pre-commit
build
twine
[options.entry_points]
spacy_factories =
phonemizer = phony.pipeline:make_phonemizer
spacy_architectures =
phony.MultiTagger.v1 = phony.ml:build_multi_tagger_model
spacy_scorers =
phoneme_scorer.v1 = phony.scorer:make_phoneme_scorer
[mypy]
plugins = thinc.mypy
no_implicit_optional = True