-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.66 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "keboola.http-client"
version = "0.0.0" # replaced by the actual version based on the release tag in github actions (look for uv version)
dependencies = [
"aiolimiter>=1.2.1",
"httpx>=0.28.1",
"requests>=2.32.4",
]
requires-python = ">=3.8"
authors = [
{ name = "Keboola KDS Team", email = "support@keboola.com" }
]
description = "General HTTP requests library for Python applications running in Keboola Connection environment"
readme = "README.md"
license = "MIT"
license-files = [ "LICENSE" ]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Education",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
]
[project.urls]
Documentation = "https://htmlpreview.github.io/?https://raw.githubusercontent.com/keboola/python-http-client/main/docs/api-html/http_client/http.html"
Repository = "https://github.com/keboola/python-http-client"
[dependency-groups]
dev = [
"flake8>=5.0.4",
"pytest>=8.3.5",
"ruff>=0.13.2",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true