-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (83 loc) · 2.46 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "devtools-cli"
version = "0.13.4"
description = "A toolbox of cross-language utility scripts for efficient software development."
license = "MIT"
authors = ["Mattias Aabmets <[email protected]>"]
readme = "README.md"
repository = "https://github.com/aabmets/devtools-cli"
keywords = ["toolbox", "cross-language", "utility", "scripts", "software", "development"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities"
]
packages = [
{ include = "devtools_cli" }
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
orjson = "^3.10.3"
pyyaml = "^6.0.1"
httpx = "^0.27.0"
semver = "^3.0.2"
pydantic = "^2.7.3"
tomli = { version = "^2.0.1", python = "<3.11"}
typer = { version = "^0.9.0", extras = ["all"] }
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.23.5"
coverage = "^7.5.3"
[tool.poetry.scripts]
devtools = "devtools_cli.main:app"
dtconf = "devtools_cli.commands.config.main:app"
dtlic = "devtools_cli.commands.license.main:app"
dtver = "devtools_cli.commands.version.main:app"
dtlog = "devtools_cli.commands.log.main:app"
[tool.pytest.ini_options]
asyncio_mode = "auto"
console_output_style = "count"
filterwarnings = ["ignore::DeprecationWarning"]
testpaths = ["tests"]
addopts = [
"--cov=devtools_cli",
"--cov-report=html",
"--no-cov-on-fail",
"--import-mode=importlib"
]
[tool.coverage.run]
branch = true
source = ["devtools_cli/*"]
[tool.coverage.report]
#fail_under = 90
skip_empty = true
ignore_errors = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@abstractmethod"
]
[tool.coverage.html]
directory = ".htmlcov"