Skip to content

Commit 17017a6

Browse files
committed
make installable with setuptools
1 parent b108ff6 commit 17017a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/python/pyproject.mustache

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Homepage = "https://github.com/{{{gitUserId}}}/{{{gitRepoId}}}"
4343
Issues = "https://github.com/{{{gitUserId}}}/{{{gitRepoId}}}/issues"
4444
4545
[build-system]
46-
requires = ["poetry-core"]
46+
requires = ["setuptools", "poetry-core"]
4747
build-backend = "poetry.core.masonry.api"
4848
4949
[tool.pytest.ini_options]
@@ -95,9 +95,9 @@ per-file-ignores = """
9595
./tests/*: S101,
9696
# F841: some variables get generated but may not be used, depending on the api-spec
9797
# E501: long descriptions/string values might lead to lines that are too long
98-
./stackit/*/models/*: F841,E501
98+
./src/stackit/*/models/*: F841,E501
9999
# F841: some variables get generated but may not be used, depending on the api-spec
100100
# E501: long descriptions/string values might lead to lines that are too long
101101
# B028: stacklevel for deprecation warning is irrelevant
102-
./stackit/*/api/default_api.py: F841,B028,E501
102+
./src/stackit/*/api/default_api.py: F841,B028,E501
103103
"""

0 commit comments

Comments
 (0)