-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathpyproject.toml
47 lines (38 loc) · 1.23 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
[tool.poetry]
name = "msoffcrypto-tool"
version = "5.4.2"
description = "Python tool and library for decrypting and encrypting MS Office files using a password or other keys"
license = "MIT"
homepage = "https://github.com/nolze/msoffcrypto-tool"
authors = ["nolze <nolze@int3.net>"]
readme = "README.md"
packages = [{ include = "msoffcrypto" }, { include = "NOTICE.txt" }]
[tool.poetry.dependencies]
python = "^3.9"
cryptography = ">=39.0"
olefile = ">=0.46"
[tool.poetry.group.dev.dependencies]
# pytest = { version = ">=6.2.1", python = "^3.7" }
pytest = "^7.4.0"
coverage = { extras = ["toml"], version = "^7.5" }
[tool.poetry.group.docs.dependencies]
sphinx-autobuild = [
{ version = "2024.4.16", python = "^3.9" },
{ version = "2021.3.14", python = "<=3.8" },
]
furo = "2024.04.27"
myst-parser = "^2.0.0"
sphinxcontrib-autoprogram = "^0.1.8"
[tool.poetry.scripts]
msoffcrypto-tool = 'msoffcrypto.__main__:main'
[tool.black]
line-length = 140
exclude = '/(\.git|\.pytest_cache|\.venv|\.vscode|dist|docs)/'
[tool.pytest.ini_options]
addopts = "-ra -q --doctest-modules"
testpaths = ["msoffcrypto", "tests"]
[tool.coverage.run]
omit = [".venv/*", "tests/*"]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"