about summary refs log tree commit diff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..4a78d86
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,25 @@
+[build-system]
+requires = [ "flit_core >=3.2,<4" ]
+build-backend = "flit_core.buildapi"
+
+[project]
+name = "scadere"
+description = "TLS certificate renewal reminder"
+readme = "README.md"
+requires-python = ">=3.11"
+license = { file = "COPYING" }
+authors = [ { name = "Nguyễn Gia Phong", email = "cnx@loang.net" } ]
+maintainers = [ { name = "Nguyễn Gia Phong", email = "chung@loa.loang.net" } ]
+keywords = [ "atom", "tls", "ca" ]
+classifiers = [
+    "Development Status :: 4 - Beta",
+    "Environment :: Console",
+    "Environment :: Web Environment",
+    "Framework :: AsyncIO",
+    "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
+    "Operating System :: OS Independent",
+    "Programming Language :: Python",
+    "Topic :: Utilities" ]
+dynamic = [ "version" ]
+urls = { Source = "https://trong.loang.net/scadere" }
+scripts = { scadere = "scadere.__main__:main" }