forked from ShayHill/docx2python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.39 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
[tool.poetry]
name = "docx2python"
version = "2.6.3"
description = "Extract content from docx files"
authors = ["Shay Hill <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
lxml = "^4.9.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
types-lxml = "^2022.11.8"
commitizen = "^2.39.1"
pre-commit = "^3.0.4"
[tool.commitizen]
name = "cz_conventional_commits"
version = "2.7.1"
tag_format = "$version"
version_files = [
"pyproject.toml:^version"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# [tox]
# isolated_build = true
# envlist = py36
# [testenv]
# whitelist_externals = poetry
# commands =
# poetry install -v
# poetry run pytest tests/
[tool.pyright]
include = ["src"]
exclude = ["**/__pycache__.py", "**/tests/**"]
pythonVersion = "3.10"
pythonPlatform = "Any"
typeCheckingMode = "strict"
reportShadowedImports = true
reportCallInDefaultInitializer = true
reportImplicitStringConcatenation = true
reportPropertyTypeMismatch = true
reportUninitializedInstanceVariable = true
reportUnnecessaryTypeIgnoreComment = true
reportUnusedCallResult = true
reportImportCycles = false
reportIncompatibleMethodOverride = false
venvPath = "C:\\Users\\shaya\\AppData\\Local\\pypoetry\\Cache\\virtualenvs"
venv = "C:\\Users\\shaya\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\docx2python-fuFHBYOz-py3.11"