-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (57 loc) · 1.75 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
[build-system]
requires = [
'setuptools>=42.0.0',
'wheel >= 0.36.0',
'pylint~=2.15.5', # MIT
'pytest~=7.2.0', # GPL-2.0-or-later
'pytest-cov~=4.0.0', # MIT
]
build-backend = 'setuptools.build_meta'
[project]
name = "mrmat-playground"
description = "Building a mini-cloud as a playground"
urls = { "Sources" = "https://github.com/MrMatAP/mrmat-playground" }
keywords = ["experimental"]
readme = "README.md"
license = { text = "MIT" }
authors = [
{ "name" = "Mathieu Imfeld", "email" = "imfeldma+9jqerw@gmail.com" }
]
maintainers = [
{ "name" = "Mathieu Imfeld", "email" = "imfeldma+9jqerw@gmail.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT",
"Programming Language :: Python :: 3.11"
]
requires-python = ">=3.10"
dependencies = [
"rich~=12.6.0",
"requests~=2.31.0",
"pyyaml~=6.0", # MIT
"netifaces~=0.11.0", # MIT
"ansible~=7.5.0" # GPLv3
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "ci.version "}
[tool.setuptools.packages.find]
where = ["src"]
include = ["mrmat_playground*"]
namespaces = true
[tool.setuptools.package-data]
"*" = [".mo", "*.yml", "*.md", "inventory", "*.j2"]
[project.scripts]
mrmat-playground = "mrmat_playground.cui:main"
# If you are debugging your tests using PyCharm then comment out the coverage options
# in addopts
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=mrmat_playground--cov-report=term --cov-report=xml:build/coverage.xml --junit-xml=build/junit.xml"
testpaths = ["tests"]
junit_family = "xunit2"
log_cli = 1
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format="%Y-%m-%d %H:%M:%S"