-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1003 Bytes
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
36
37
38
39
40
[build-system]
requires = ["uv-build>=0.9"]
build-backend = "uv_build"
[project]
name = "paraclient"
version = "1.37.2"
description = "Python client for Para"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9"
authors = [
{ name = "Alexander Bogdanovski", email = "alex@erudika.com" },
]
license-files = ["LICENSE"]
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"requests>=2.32.5",
"aws-requests-auth==0.4.3",
"urllib3>=2.6.3",
]
[project.optional-dependencies]
test = [
"testcontainers>=4.6.0",
]
[project.urls]
Homepage = "https://github.com/Erudika/para-client-python"
Documentation = "https://paraio.org/docs"
Issues = "https://github.com/Erudika/para-client-python/issues"
[tool.uv.build-backend]
module-root = "."
module-name = "paraclient"