-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (39 loc) · 942 Bytes
/
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
[tool.poetry]
name = "nt-users-tool"
version = "0.1.0"
description = ""
authors = ["Loïc Riegel <[email protected]>"]
readme = "README.md"
packages = [{include = "nt_users_tool", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.8,<=3.10"
pyyaml = "^6.0"
openpyxl = "^3.0.10"
pre-commit = "^3.0.0"
progress = "^1.6"
pyinstaller = "^5.7.0"
[tool.poetry.scripts]
ntuserstool = 'nt_users_tool.cli:main'
[[tool.poetry.source]]
name = "repositories.pypi"
url = "https://pypi.org/"
default = false
secondary = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
black = {version = "^23.1a1", allow-prereleases = false}
pandas = "^1.5.3"
[tool.pytest.ini_options]
testpaths = [
"tests/"
]
addopts = """\
--cov=./src \
--cov-report=html \
--cov-report html:./tests/coverage_report.html \
"""