-
Notifications
You must be signed in to change notification settings - Fork 82
/
pyproject.toml
67 lines (58 loc) · 1.54 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
[project]
name = "parserator"
version = "0.6.9"
description = "Create parsers"
readme = "README.md"
license = {text = "MIT License", url = "http://www.opensource.org/licenses/mit-license.php"}
requires-python = ">=3.7"
dependencies = [
'lxml>=3.7.3',
'python-crfsuite>=0.7',
'chardet',
]
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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
]
[project.urls]
Homepage = "https://github.com/datamade/parserator"
[project.scripts]
parserator = "parserator.main:dispatch"
[project.optional-dependencies]
dev = ["pytest",
"black",
"isort",
"flake8"
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["parserator"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
testpaths = [
"tests",
]
[tool.mypy]
files = ["parserator"]
show_error_codes = true
ignore_missing_imports = true
check_untyped_defs = true
implicit_reexport = false
[tool.isort]
profile = "black"
src_paths = ["parserator", "tests"]