]> www.dolda2000.com Git - automanga.git/commitdiff
Replace setup.py with a pyproject.toml.
authorFredrik Tolf <fredrik@dolda2000.com>
Tue, 7 Apr 2026 21:10:05 +0000 (23:10 +0200)
committerFredrik Tolf <fredrik@dolda2000.com>
Tue, 7 Apr 2026 21:10:05 +0000 (23:10 +0200)
pyproject.toml [new file with mode: 0644]
setup.py [deleted file]

diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644 (file)
index 0000000..b486bdc
--- /dev/null
@@ -0,0 +1,12 @@
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "automanga"
+version = "1"
+description = "Automanga"
+
+[tool.setuputils]
+packages = ["manga"]
+scripts = ["automanga", "getmanga"]
diff --git a/setup.py b/setup.py
deleted file mode 100755 (executable)
index 892a35d..0000000
--- a/setup.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/python3
-
-from setuptools import setup
-
-setup(name = "automanga",
-      version = "1",
-      description = "Automanga",
-      packages = ["manga"],
-      scripts = ["automanga", "getmanga"])