From: Danilo M. Date: Fri, 1 May 2026 10:38:44 +0000 (+0200) Subject: chore: initial project scaffold X-Git-Tag: v1.0~33 X-Git-Url: https://git.danix.xyz/?a=commitdiff_plain;h=ad73e0032794c940aa9c2f752c83097ef464e39d;p=publisher.git chore: initial project scaffold --- ad73e0032794c940aa9c2f752c83097ef464e39d diff --git a/core/__init__.py b/core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..98a3fd4 --- /dev/null +++ b/main.py @@ -0,0 +1,11 @@ +import sys +from PyQt6.QtWidgets import QApplication + +def main(): + app = QApplication(sys.argv) + app.setApplicationName("my-publisher") + app.setOrganizationName("danix") + sys.exit(app.exec()) + +if __name__ == "__main__": + main() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..06a9897 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +PyQt6>=6.6.0 +tomlkit>=0.12.0 +mistune>=3.0.0 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ui/__init__.py b/ui/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/workers/__init__.py b/workers/__init__.py new file mode 100644 index 0000000..e69de29