File: pyproject.toml

package info (click to toggle)
python-asttokens 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 632 kB
  • sloc: python: 3,575; makefile: 30
file content (24 lines) | stat: -rw-r--r-- 663 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = ["setuptools>=44", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
write_to = "asttokens/version.py"
write_to_template = "__version__ = \"{version}\"\n"

[tool.mypy]
show_error_codes=true
warn_unused_ignores=true
disallow_untyped_defs=true
disallow_untyped_calls=true
no_implicit_reexport=true

[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs=false
disallow_untyped_calls=false
ignore_missing_imports=true

[[tool.mypy.overrides]]
module = ["astroid", "astroid.manager", "astroid.node_classes", "astroid.nodes", "astroid.nodes.utils"]
ignore_missing_imports = true