forked from FlorianREGAZ/Python-Tls-Client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 995 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
[tool.poetry]
name = "tls-client"
version = "1.1.2"
description = "Advanced Python HTTP Client."
authors = [
"Florian Zager <florian@zager-online.de>",
"Dmitry Nedelyaev <jtjag@mail.ru>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/JTJag/python-tls-client"
packages = [{ include = "tls_client" }]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
include = ["tls_client/dependencies/*"]
[tool.poetry.dependencies]
python = "^3.11"
typing-extensions = "^4.13.0"
urllib3 = "^2.3.0"
requests = "^2.32.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"