-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.27 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
[tool.poetry]
name = "cortexapps-cli"
# version will be incremented via command line as part of github actions build
version = "0.0.0"
description = "Command Line Interface for cortexapps"
license = "MIT"
authors = [
"Cortex Apps <[email protected]>",
]
readme = "README.rst"
packages = [{include = "cortexapps_cli"}]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.11"
requests = ">= 2.32.3, < 3"
pyyaml = ">= 6.0.1, < 7"
urllib3 = ">= 2.2.2"
[tool.poetry.scripts]
cortex = "cortexapps_cli.cortex:cli"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
[tool.poetry.group.dev.dependencies]
pytest-xdist = "^3.6.1"
responses = "^0.25.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
Homepage = "https://github.com/cortexapps/cli"
"Bug Tracker" = "https://github.com/cortexapps/cli/issues"
"Changes" = " https://github.com/cortexapps/cli/blob/main/HISTORY.md"
"Documentation" = " https://github.com/cortexapps/cli/blob/main/README.rst"
[tool.pytest.ini_options]
markers = [
"serial"
]
minversion = "7.4.3"
addopts = "--cov=cortexapps_cli --cov-append --cov-report term-missing"
testpaths = [
"tests"
]