11[tool .poetry ]
22name = " stackit-core"
3- version = " v0.0.1a2"
4- authors = [
5- " STACKIT Developer Tools <developer-tools@stackit.cloud>" ,
6- ]
3+ version = " v0.0.1a3"
4+ authors = [" STACKIT Developer Tools <developer-tools@stackit.cloud>" ]
75description = " Core functionality for the STACKIT SDK for Python"
86readme = " README.md"
97classifiers = [
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" ,
1611]
12+ packages = [{ include = " stackit" , from = " src" }]
1713
1814
1915[tool .poetry .dependencies ]
@@ -29,8 +25,8 @@ requests = ">=2.32.3"
2925black = " >=24.8.0"
3026pytest = " >=8.3.3"
3127flake8 = [
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" },
3430]
3531flake8-black = " >=0.3.6"
3632flake8-pyproject = " >=1.2.3"
@@ -51,12 +47,8 @@ requires = ["setuptools", "poetry-core"]
5147build-backend = " poetry.core.masonry.api"
5248
5349[tool .pytest .ini_options ]
54- pythonpath = [
55- " src"
56- ]
57- testpaths = [
58- " tests"
59- ]
50+ pythonpath = [" src" ]
51+ testpaths = [" tests" ]
6052
6153[tool .black ]
6254line-length = 120
@@ -83,7 +75,20 @@ exclude = """
8375profile = ' black'
8476
8577[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+ ]
8792statistics = true
8893show-source = false
8994max-line-length = 120
0 commit comments