Skip to content

Commit 22af6cb

Browse files
committed
Update pyproject.toml metadata and license reference
- Removed email addresses from authors list to maintain privacy - Changed license reference from `{ text = "MIT" }` to `{ file = "LICENSE" }` for better maintainability - Added legacy `author` and `url` fields for compatibility with older tooling - Kept all existing functionality while cleaning up project metadata This change aligns with modern Python packaging standards while ensuring broader tool compatibility.
1 parent e75a0fc commit 22af6cb

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

pyproject.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ name = "async_tls_client"
77
version = "1.1.1"
88
description = "Asyncio TLS client with advanced fingerprinting capabilities"
99
readme = "README.md"
10-
authors = [
11-
{ name = "Diprog", email = "[email protected]" },
12-
{ name = "Florian Zager", email = "[email protected]" }
13-
]
14-
license = { text = "MIT" }
10+
11+
authors = [{ name = "Diprog" }, { name = "Florian Zager" }]
12+
license = { file = "LICENSE" }
1513
keywords = ["tls", "asyncio", "http-client", "ja3", "fingerprinting", "http2"]
1614
classifiers = [
1715
"Environment :: Web Environment",
@@ -32,6 +30,10 @@ dependencies = [
3230
"typing-extensions>=4.0",
3331
]
3432

33+
# Legacy fields
34+
author = "Diprog, Florian Zager"
35+
url = "https://github.com/diprog/python-tls-client-async"
36+
3537
[project.urls]
3638
Homepage = "https://github.com/diprog/python-tls-client-async"
3739
Documentation = "https://github.com/diprog/python-tls-client-async#readme"

0 commit comments

Comments
 (0)