-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "polyapi-python"
version = "0.3.14.dev2"
description = "The Python Client for PolyAPI, the IPaaS by Developers for Developers"
authors = [{ name = "Dan Fellin", email = "[email protected]" }]
dependencies = [
"requests>=2.32.3",
"typing_extensions>=4.12.2",
"jsonschema-gentypes==2.10.0",
"pydantic>=2.8.0,<3.0.0",
"stdlib_list>=0.10.0,<1.0.0",
"colorama==0.4.4",
"python-socketio[asyncio_client]==5.11.1",
"truststore>=0.8.0",
"httpx>=0.28.1"
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/polyapi/polyapi-python"
[tool.setuptools.packages.find]
include = ["polyapi"]
exclude = ["polyapi/poly*", "polyapi/vari*", "polyapi/.config.env", "polyapi/cached_deployables*", "polyapi/deployments_revision"] # exclude the generated libraries from builds
[tool.mypy]
# for now redef errors happen sometimes, we will clean this up in the future!
disable_error_code = "no-redef,name-defined"
implicit_optional = true