Skip to content

Commit c216cf6

Browse files
authored
feat: Test new pre-release (#111)
1 parent c8c02e4 commit c216cf6

File tree

1 file changed

+24
-19
lines changed

1 file changed

+24
-19
lines changed

core/pyproject.toml

+24-19
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
[tool.poetry]
22
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]>"]
75
description = "Core functionality for the STACKIT SDK for Python"
86
readme = "README.md"
97
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",
1611
]
12+
packages = [{ include = "stackit", from = "src" }]
1713

1814

1915
[tool.poetry.dependencies]
@@ -29,8 +25,8 @@ requests = ">=2.32.3"
2925
black = ">=24.8.0"
3026
pytest = ">=8.3.3"
3127
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" },
3430
]
3531
flake8-black = ">=0.3.6"
3632
flake8-pyproject = ">=1.2.3"
@@ -51,12 +47,8 @@ requires = ["setuptools", "poetry-core"]
5147
build-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]
6254
line-length = 120
@@ -83,7 +75,20 @@ exclude = """
8375
profile = '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+
]
8792
statistics = true
8893
show-source = false
8994
max-line-length = 120

0 commit comments

Comments
 (0)