Skip to content

Commit 3b440c5

Browse files
committed
re-generate services
1 parent 6296767 commit 3b440c5

File tree

1,004 files changed

+8942
-4227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,004 files changed

+8942
-4227
lines changed

services/authorization/pyproject.toml

Lines changed: 37 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,57 @@
1-
[project]
1+
[tool.poetry]
22
name = "stackit-authorization"
3-
version = "1.0.0"
3+
version = "0.0.1"
44
authors = [
5-
{ name="OpenAPI Generator Community", email="[email protected]" },
5+
"OpenAPI Generator Community <[email protected]>",
66
]
77
description = "STACKIT Membership API"
88
#readme = "README.md"
99
#license = "NoLicense"
10-
requires-python = ">=3.8"
1110
classifiers = [
1211
"Programming Language :: Python :: 3",
1312
"License :: OSI Approved :: Apache Software License",
1413
"Operating System :: OS Independent",
1514
]
16-
dependencies = [
17-
"requests ~= 2.32.3",
18-
"python_dateutil ~= 2.5.3",
19-
"pydantic ~= 2.9.2",
20-
"stackit-core ~= 0.0.1",
15+
packages = [
16+
{ include = "stackit", from="src" }
2117
]
2218

23-
[project.optional-dependencies]
24-
dev = [
25-
"black >= 24.8.0",
26-
"pytest ~= 8.3.2",
27-
"flake8 ~= 7.1.0",
28-
"flake8-black ~= 0.3.6",
29-
"flake8-pyproject ~= 1.2.3",
30-
"flake8-quotes ~= 3.4.0",
31-
"flake8-bandit ~= 4.1.1",
32-
"flake8-bugbear ~= 24.8.19",
33-
"flake8-eradicate ~= 1.5.0",
34-
"flake8-eol ~= 0.0.8",
35-
"autoimport ~= 1.6.1",
36-
"isort ~= 5.13.2",
37-
]
19+
[tool.poetry.dependencies]
20+
python = ">=3.8,<4.0"
21+
stackit-core = "^0.0.1"
22+
requests = "^2.32.3"
23+
pydantic = "^2.9.2"
24+
python-dateutil = "^2.9.0.post0"
25+
26+
[tool.poetry.group.dev.dependencies]
27+
black = "24.8.0"
28+
pytest = "^8.3.3"
29+
flake8 = "^5.0.3"
30+
flake8-black = "^0.3.6"
31+
flake8-pyproject = "^1.2.3"
32+
autoimport = "^1.6.1"
33+
flake8-eol = "^0.0.8"
34+
flake8-eradicate = "^1.5.0"
35+
flake8-bandit = "^4.1.1"
36+
flake8-bugbear = "^23.1.14"
37+
flake8-quotes = "^3.4.0"
38+
isort = "^5.13.2"
3839

3940
[project.urls]
4041
Homepage = "https://github.com/stackitcloud/stackit-sdk-python"
4142
Issues = "https://github.com/stackitcloud/stackit-sdk-python/issues"
4243

4344
[build-system]
44-
requires = ["setuptools"]
45-
build-backend = "setuptools.build_meta"
45+
requires = ["setuptools", "poetry-core"]
46+
build-backend = "poetry.core.masonry.api"
47+
48+
[tool.pytest.ini_options]
49+
pythonpath = [
50+
"src"
51+
]
52+
testpaths = [
53+
"tests"
54+
]
4655

4756
[tool.black]
4857
line-length = 120
@@ -85,9 +94,9 @@ per-file-ignores = """
8594
./tests/*: S101,
8695
# F841: some variables get generated but may not be used, depending on the api-spec
8796
# E501: long descriptions/string values might lead to lines that are too long
88-
./stackit/*/models/*: F841,E501
97+
./src/stackit/*/models/*: F841,E501
8998
# F841: some variables get generated but may not be used, depending on the api-spec
9099
# E501: long descriptions/string values might lead to lines that are too long
91100
# B028: stacklevel for deprecation warning is irrelevant
92-
./stackit/*/api/default_api.py: F841,B028,E501
101+
./src/stackit/*/api/default_api.py: F841,B028,E501
93102
"""

0 commit comments

Comments
 (0)