Skip to content

Commit

Permalink
v0.2.7, works well with pyproject/pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
yaroslaff committed Nov 20, 2024
1 parent 71ae0a3 commit 2d98661
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
[build-system]
# requires = ["setuptools >= 40.6.0", "wheel"]
requires = ["hatchling", "wheel"]
requires = ["hatchling>=1.26.3","setuptools >= 40.6.0", "wheel"]

# build-backend = "setuptools.build_meta"
build-backend = "hatchling.build"

[project]
name="showcert"
license = "MIT"
# license = { file = "LICENSE" }
dynamic = [ "version" ]
keywords = [ "SSL", "TLS", "certificate", "verify", "remote", "local", "X.509", "simple", "openssl", "alternative", "CA", "generate", "showcert", "gencert" ]
keywords = [ "SSL", "TLS", "certificate", "verify", "remote", "local", "X.509", "X509", "simple",
"openssl", "alternative", "CA", "generate", "showcert", "gencert" ]

dependencies = [
'cryptography >= 41.0.0',
Expand Down Expand Up @@ -41,3 +44,7 @@ gencert = "showcert.gencert:main"
[tool.hatch.version]
# path = 'showcert:showcert/__main__.py'
path = 'showcert/__init__.py'

[tool.hatch.metadata]
# license-files = ["LICENSE"]

2 changes: 1 addition & 1 deletion showcert/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.6'
__version__ = '0.2.7'

0 comments on commit 2d98661

Please sign in to comment.