-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
49 lines (45 loc) · 1.4 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
[project]
name = "parsing"
description = "LR(1) parser generator for Python and CFSM and GLR parser drivers"
requires-python = ">=3.7.0"
dynamic = ["version", "dependencies", "optional-dependencies"]
license = { file = "LICENSE" }
authors = [{ name = "Jason Evans", email = "[email protected]" }]
readme = { file = "README.rst", content-type = "text/x-rst" }
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Compilers',
'Topic :: Text Processing :: General',
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
target-version = ["py37"]
[tool.mypy]
python_version = "3.7"
follow_imports = "normal"
ignore_missing_imports = true
warn_redundant_casts = true
warn_unused_configs = true
show_column_numbers = true
disallow_subclassing_any = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_unused_ignores = true
warn_return_any = true
no_implicit_reexport = true
strict_equality = true
[[tool.mypy.overrides]]
module = ["parsing.tests.*"]
ignore_errors = true