forked from FlorianREGAZ/Python-Tls-Client
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "async_tls_client"
version = "2.2.0"
description = "Asyncio TLS client with advanced fingerprinting capabilities"
readme = "README.md"
authors = [{ name = "Diprog" }, { name = "Florian Zager" }]
license = { file = "LICENSE" }
keywords = ["tls", "asyncio", "http-client", "ja3", "fingerprinting", "http2"]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
dependencies = [
"nocasedict",
"typing-extensions"
]
[project.urls]
Homepage = "https://github.com/diprog/python-tls-client-async"
Documentation = "https://github.com/diprog/python-tls-client-async#readme"
Original = "https://github.com/FlorianREGAZ/Python-Tls-Client"
Issues = "https://github.com/diprog/python-tls-client-async/issues"
Changelog = "https://github.com/diprog/python-tls-client-async/releases"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
async_tls_client = [
"dependencies/*.dll",
"dependencies/*.dylib",
"dependencies/*.so",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["async_tls_client*"]
exclude = ["tests*", "examples*", "scripts*"]
# Tests
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-asyncio>=0.20",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-v"