Skip to content

Commit 915183d

Browse files
authored
build: Include a basic setup.py to allow editable installs during development (openapi-generators#370)
1 parent 078b417 commit 915183d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@ skip = [".venv", "tests/test_templates"]
9292
omit = ["openapi_python_client/templates/*"]
9393

9494
[build-system]
95-
requires = ["poetry>=1.0"]
95+
requires = ["setuptools", "poetry>=1.0"]
9696
build-backend = "poetry.masonry.api"

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from setuptools import setup
2+
3+
setup()

0 commit comments

Comments
 (0)