-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 967 Bytes
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 967 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
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "avm"
version = "1.2.2"
description = "Interact with DNV GL Software's Application Version Manager"
authors = ["Per Voie, Sevan SSP", "Einar B. Glomnes, Sevan SSP <ebg@sevanssp.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/SevanSSP/avm/"
packages = [{ include = "avm" },]
include = [
"LICENSE"
]
[tool.poetry.scripts]
avm-list = "avm.entry_points:list_applications"
[tool.poetry.dependencies]
python = ">=3.9.1, < 4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
nox = "^2024.10.9"
coverage = "^7.6.10"
pytest-cov = "^6.0.0"
[[tool.poetry.source]]
name = "packagr"
url = "https://api.packagr.app/EYvhW6SyL/"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.urls]
download = "https://api.packagr.app/EYvhW6SyL/"
issues = "https://github.com/SevanSSP/avm/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"