-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (55 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
72 lines (55 loc) · 1.53 KB
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
[project]
name = "docx2python"
version = "3.6.2"
description = "Extract content from docx files"
authors = [{ name = "Shay Hill", email = "shay_public@hotmail.com" }]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10.0"
dependencies = ["lxml", "paragraphs", "typing_extensions", "types-lxml"]
[project.optional-dependencies]
dev = ["commitizen", "pre-commit", "pytest", "tox", "types-lxml"]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.commitizen]
name = "cz_conventional_commits"
version = "3.6.2"
tag_format = "$version"
major-version-zero = true
version_files = ["pyproject.toml:^version"]
[tool.isort]
profile = "black"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{314,313,312,311,310}
[testenv]
deps = pytest
commands = pytest
"""
[tool.pytest.ini_options]
pythonpath = ["tests"]
log_cli = 1
[tool.pyright]
include = ["src"]
exclude = ["**/__pycache__.py"]
pythonVersion = "3.9"
pythonPlatform = "Any"
typeCheckingMode = "strict"
reportShadowedImports = true
reportCallInDefaultInitializer = true
reportImplicitStringConcatenation = true
# reportMissingSuperCall = true
reportPropertyTypeMismatch = true
reportUninitializedInstanceVariable = true
reportUnnecessaryTypeIgnoreComment = true
reportUnusedCallResult = true
reportUnknownArgumentType = false
reportUnknownLambdaType = false
reportUnknownMemberType = false
reportUnknownParameterType = false
reportUnknownVariableType = false
reportUntypedFunctionDecorator = false
venvPath = "."
venv = "./venv"