Skip to content

Commit

Permalink
Move package data to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsinger committed Apr 30, 2024
1 parent df34cc5 commit d2d345b
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
31 changes: 30 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=60", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "certbot-pkcs12"
license = { text = "Apache-2.0" }
description = "PKCS#12 installer plugin for Certbot and Let's Encrypt"
readme = "README.md"
authors = [ { name = "Leo Singer", email = "[email protected]" } ]
dynamic = [ "version" ]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security :: Cryptography",
]
dependencies = [
"certbot >= 1.19.0",
"pyOpenSSL < 24.1.0",
]
requires-python = ">=3.8"

[project.urls]
source = "https://github.com/nasa-gcn/certbot-pkcs12"

[project.entry-points."certbot.plugins"]
pkcs12 = "certbot_pkcs12:Installer"

[tool.setuptools_scm]
28 changes: 0 additions & 28 deletions setup.cfg

This file was deleted.

0 comments on commit d2d345b

Please sign in to comment.