We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27e9554 commit c5b7c2bCopy full SHA for c5b7c2b
3 files changed
MANIFEST.in
pyproject.toml
@@ -0,0 +1,30 @@
1
+[project]
2
+name = "simp-le-client"
3
+description = "Simple Let's Encrypt Client"
4
+version = "2.0"
5
+
6
+dependencies = [
7
+ "acme>=4.0",
8
+ "cryptography",
9
+ "josepy",
10
+]
11
+optional-dependencies = {test=[
12
+ "pycodestyle",
13
+ "pylint",
14
+]}
15
16
+authors = [{name="Ian Denhardt", email="ian@zenhack.net"}]
17
+license = {text="GPLv3"}
18
+urls = {Repository="https://github.com/wosc/simp_le"}
19
+requires-python = ">=3.7"
20
21
+[project.scripts]
22
+simp_le = "simp_le:main"
23
24
25
+[build-system]
26
+requires = ["hatchling"]
27
+build-backend = "hatchling.build"
28
29
+[tool.hatch.build.targets.wheel]
30
+include = ["simp_le.py"]
setup.py
0 commit comments