Skip to content

Commit 926319b

Browse files
committed
Replace setup.py with pyproject.toml
1 parent 27e9554 commit 926319b

3 files changed

Lines changed: 27 additions & 73 deletions

File tree

MANIFEST.in

Lines changed: 0 additions & 3 deletions
This file was deleted.

pyproject.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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"

setup.py

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)