We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19a79ae commit 3436a9cCopy full SHA for 3436a9c
pyproject.toml
@@ -1,15 +1,20 @@
1
[tool.poetry]
2
-name = "openapi-cli-python"
3
-version = "0.1.0"
4
-description = ""
+name = "openapi-python-sdk"
+version = "0.2.0"
+description = "A minimal Python SDK for the Openapi® API marketplace"
5
authors = ["Michael Cuffaro <michael@cuffaro.com>"]
6
-readme = "README.md"
7
-packages = [{include = "openapi_cli_python"}]
+readme = "docs/readme-pypi.md"
+packages = [{include = "openapi_python_sdk"}]
8
9
[tool.poetry.dependencies]
10
python = "^3.10"
11
httpx = "^0.24.0"
12
13
+[tool.poetry.group.dev.dependencies]
14
+pytest = "^8.0"
15
+
16
+[tool.pytest.ini_options]
17
+testpaths = ["tests"]
18
19
[build-system]
20
requires = ["poetry-core"]
0 commit comments