-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 927 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
[tool.poetry]
name = "cosmo"
version = "0.10.1"
license = "mit"
description = "???"
authors = ["Ember Keske <ember.keske@wobcom.de>", "Johann Wagner <johann.wagner@wobcom.de>", "Yureka <yuka@yuka.dev>", "Fiona Weber <fiona.weber@wobcom.de>", "Lou Lecrivain <lou.lecrivain@wdz.de>"]
[tool.poetry.scripts]
cosmo = "cosmo.__main__:main"
[tool.coverage.run]
omit = [
"cosmo/tests/*"
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = ">2.26.0"
PyYAML = ">5.1"
packaging = "^25"
deepmerge = "^2.0"
termcolor = "^3.1.0"
multimethod = "^2.0"
jsonschema = "4.25.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
mypy = "^1.15.0"
types-pyyaml = "^6.0.12.20241230"
types-requests = "^2.32.0.20250301"
black = "^25.1.0"
sharedmock = "^0.1.0"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"