-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (56 loc) · 1.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# SPDX-FileCopyrightText: 2023 The Template-Sandbox Authors
#
# SPDX-License-Identifier: Apache-2.0
[tool.poetry]
name = "template-sandbox"
version = "0.1.0-alpha.6"
description = "Sandbox for creating a reproducible research modern python template. In the future it might become a cookiecutter template."
authors = ["Ricardo Guimarães <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
conda-lock = "^2.0.0"
structlog-sentry-logger = "^1.0.1"
requests = "^2.31.0"
cryptography = "^41.0.0"
[tool.poetry.group.reuse.dependencies]
reuse = "^2.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.2.1"
pre-commit-hooks = "^4.4.0"
nox = "^2023.0.0"
detect-secrets = "^1.4.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.2"
coverage = {extras = ["toml"], version = "^7.2.2"}
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
hypothesis = "^6.71.0"
mutmut = "^2.4.3"
[tool.poetry.group.lint.dependencies]
ruff = "^0.0.280"
black = "^23.3.0"
safety = "^2.3.5"
pylint = "^2.17.2"
[tool.poetry.group.type.dependencies]
mypy = "^1.1.1"
typeguard = "^4.0.0"
[tool.poetry.group.docs.dependencies]
xdoctest = "^1.1.1"
sphinx = "^7.0.0"
myst-parser = "^2.0.0"
sphinx-autodoc-typehints = "^1.22"
towncrier = "^23.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
template-sandbox = "template_sandbox.greeter:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["template_sandbox"]
[tool.coverage.report]
show_missing = true
fail_under = 100