-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 879 Bytes
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
[tool.poetry]
name = "codeinsight_sdk"
version = "0.0.14"
description = "A Python client for the Revenera Code Insight"
authors = ["Zachary Karpinski <1206496+zkarpinski@users.noreply.github.com>"]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/zkarpinski/codeinsight-sdk-python"
keywords = ["revenera", "api", "flexera", "code insight","sdk"]
include = [
{ path = "tests", format = "sdist" }
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
dataclasses-json = "^0.6.3"
[tool.poetry.group.dev.dependencies]
pytest = ">=9.0.3,<9.1.0"
pytest-mock = "^3.0.0"
pytest-cov = "*"
exceptiongroup = "^1.2.0"
requests-mock = "^1.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--cov=codeinsight_sdk", "--cov-report=term-missing"]