-
Notifications
You must be signed in to change notification settings - Fork 71
/
pyproject.toml
74 lines (63 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "probablepeople"
version = "0.5.6"
description = "Parse romanized names & companies using advanced NLP methods"
readme = "README.md"
license = {text = "MIT License", url = "http://www.opensource.org/licenses/mit-license.php"}
requires-python = ">=3.9"
dependencies = [
"python-crfsuite>=0.7",
"probableparsing",
"doublemetaphone"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.urls]
Homepage = "https://github.com/datamade/probablepeople"
[project.optional-dependencies]
dev = ["pytest",
"black",
"isort",
"mypy",
"flake8",
"parserator",
"pre-commit"
]
[build-system]
requires = ["setuptools>=42", "wheel", "parserator", "probableparsing", "doublemetaphone"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["probablepeople"]
[tool.setuptools.package-data]
probablepeople = ["generic_learned_settings.crfsuite",
"person_learned_settings.crfsuite",
"company_learned_settings.crfsuite"
]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
testpaths = [
"tests",
]
[tool.mypy]
files = ["probablepeople"]
show_error_codes = true
ignore_missing_imports = true
check_untyped_defs = true
implicit_reexport = false
[tool.isort]
profile = "black"
src_paths = ["probablepeople", "tests"]