1
1
[tool .poetry ]
2
2
name = " stackit-core"
3
- version = " v0.0.1a2"
4
- authors = [
5
- " STACKIT Developer Tools <[email protected] >" ,
6
- ]
3
+ version = " v0.0.1a3"
4
+ authors = [
" STACKIT Developer Tools <[email protected] >" ]
7
5
description = " Core functionality for the STACKIT SDK for Python"
8
6
readme = " README.md"
9
7
classifiers = [
10
- " Programming Language :: Python :: 3" ,
11
- " License :: OSI Approved :: Apache Software License" ,
12
- " Operating System :: OS Independent" ,
13
- ]
14
- packages = [
15
- { include = " stackit" , from =" src" }
8
+ " Programming Language :: Python :: 3" ,
9
+ " License :: OSI Approved :: Apache Software License" ,
10
+ " Operating System :: OS Independent" ,
16
11
]
12
+ packages = [{ include = " stackit" , from = " src" }]
17
13
18
14
19
15
[tool .poetry .dependencies ]
@@ -29,8 +25,8 @@ requests = ">=2.32.3"
29
25
black = " >=24.8.0"
30
26
pytest = " >=8.3.3"
31
27
flake8 = [
32
- { version = " >=5.0.3" , python = " <3.12" },
33
- { version = " >=6.0.1" , python = " >=3.12" }
28
+ { version = " >=5.0.3" , python = " <3.12" },
29
+ { version = " >=6.0.1" , python = " >=3.12" },
34
30
]
35
31
flake8-black = " >=0.3.6"
36
32
flake8-pyproject = " >=1.2.3"
@@ -51,12 +47,8 @@ requires = ["setuptools", "poetry-core"]
51
47
build-backend = " poetry.core.masonry.api"
52
48
53
49
[tool .pytest .ini_options ]
54
- pythonpath = [
55
- " src"
56
- ]
57
- testpaths = [
58
- " tests"
59
- ]
50
+ pythonpath = [" src" ]
51
+ testpaths = [" tests" ]
60
52
61
53
[tool .black ]
62
54
line-length = 120
@@ -83,7 +75,20 @@ exclude = """
83
75
profile = ' black'
84
76
85
77
[tool .flake8 ]
86
- exclude = [" .eggs" , " .git" , " .hg" , " .mypy_cache" , " .tox" , " .venv" , " .devcontainer" , " venv" , " _build" , " buck-out" , " build" , " dist" ]
78
+ exclude = [
79
+ " .eggs" ,
80
+ " .git" ,
81
+ " .hg" ,
82
+ " .mypy_cache" ,
83
+ " .tox" ,
84
+ " .venv" ,
85
+ " .devcontainer" ,
86
+ " venv" ,
87
+ " _build" ,
88
+ " buck-out" ,
89
+ " build" ,
90
+ " dist" ,
91
+ ]
87
92
statistics = true
88
93
show-source = false
89
94
max-line-length = 120
0 commit comments