Skip to content

Commit

Permalink
Add pyproject.toml for hello-tls package
Browse files Browse the repository at this point in the history
  • Loading branch information
boppreh committed Oct 21, 2023
1 parent 733e5db commit f103463
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "hello_tls"
version = "0.1.0"
authors = [
{ name="BoppreH", email="github@boppreh.com" },
]
description = "Create TLS Client Hello messages and scan server capabilities"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pyOpenSSL>=23.0.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[project.urls]
"Homepage" = "https://github.com/boppreh/hello_tls"
"Bug Tracker" = "https://github.com/boppreh/hello_tls/issues"

0 comments on commit f103463

Please sign in to comment.