-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.66 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
[build-system]
requires = [
'setuptools~=68.2.2',
'wheel~=0.41.2'
]
build-backend = 'setuptools.build_meta'
[project]
name = "suikinkutsu"
description = "A tool for developer efficiency when they are on the road, using container-based infrastructure, because we all cook with water."
urls = { "Sources" = "https://github.com/MrMatAP/suikinkutsu" }
keywords = ["containerisation", "utility", "development"]
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Mathieu Imfeld", email = "[email protected]" }
]
maintainers = [
{ name = "Mathieu Imfeld", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT",
"Programming Language :: Python :: 3.11"
]
requires-python = ">=3.11"
dependencies = [
"rich~=13.5.2", # MIT
"pydantic~=2.5.3", # MIT
"pyyaml~=6.0", # MIT
"psycopg2-binary~=2.9.7" # LGPL with exceptions
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = { attr = "ci.version" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["suikinkutsu*"]
namespaces = true
[project.scripts]
sk = "suikinkutsu.cli: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=suikinkutsu --cov-report=term --cov-report=xml:build/coverage.xml --junit-xml=build/junit.xml --capture=tee-sys"
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"