-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.05 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
[tool.poetry]
name = "pysandboxie"
version = "0.2.0"
description = "Sandboxie binding for Python"
authors = ["nedsociety <nedsociety@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/nedsociety/pysandboxie"
keywords = ["sandboxie", "sandboxie-plus"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: Microsoft :: Windows",
]
packages= [{include = "sandboxie"}]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.9"
pywin32 = "^304"
clize = "^4.1.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
coverage = {extras = ["toml"], version = "^5.3.1"}
pytest-cov = "^2.10.1"
debugpy = "^1.2.1"
autopep8 = "^1.5.4"
psutil = "^5.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--cov=sandboxie --cov-report=xml:cov.xml --cov-report=html"
[tool.coverage.run]
omit = [
"sandboxie/sandbox_stub_redirector.py",
]
[tool.coverage.report]
exclude_lines = ["coverage: no cover"]