From 7e5e029432707b79080d9d9243a3bad26f6d39f5 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Fri, 23 Apr 2021 17:19:45 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20Relative=20BreezeX=20builder=20m?= =?UTF-8?q?odule=20init?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- builder/{src/bxpkg => bxbuild}/__init__.py | 0 builder/{src/bxpkg => bxbuild}/configure.py | 3 ++- builder/{src/bxpkg => bxbuild}/constants.py | 0 builder/{src/bxpkg => bxbuild}/generator.py | 5 +++-- builder/{src/bxpkg => bxbuild}/symlinks.py | 0 5 files changed, 5 insertions(+), 3 deletions(-) rename builder/{src/bxpkg => bxbuild}/__init__.py (100%) rename builder/{src/bxpkg => bxbuild}/configure.py (97%) rename builder/{src/bxpkg => bxbuild}/constants.py (100%) rename builder/{src/bxpkg => bxbuild}/generator.py (97%) rename builder/{src/bxpkg => bxbuild}/symlinks.py (100%) diff --git a/builder/src/bxpkg/__init__.py b/builder/bxbuild/__init__.py similarity index 100% rename from builder/src/bxpkg/__init__.py rename to builder/bxbuild/__init__.py diff --git a/builder/src/bxpkg/configure.py b/builder/bxbuild/configure.py similarity index 97% rename from builder/src/bxpkg/configure.py rename to builder/bxbuild/configure.py index 8f9c217..2336672 100644 --- a/builder/src/bxpkg/configure.py +++ b/builder/bxbuild/configure.py @@ -4,9 +4,10 @@ from pathlib import Path from typing import Any, Dict, Tuple, TypeVar, Union -from bxpkg.constants import WIN_CURSORS_CFG, WIN_DELAY, X_CURSORS_CFG, X_DELAY from clickgen.util import PNGProvider +from .constants import WIN_CURSORS_CFG, WIN_DELAY, X_CURSORS_CFG, X_DELAY + X = TypeVar("X") diff --git a/builder/src/bxpkg/constants.py b/builder/bxbuild/constants.py similarity index 100% rename from builder/src/bxpkg/constants.py rename to builder/bxbuild/constants.py diff --git a/builder/src/bxpkg/generator.py b/builder/bxbuild/generator.py similarity index 97% rename from builder/src/bxpkg/generator.py rename to builder/bxbuild/generator.py index 9210710..fdd7fe5 100644 --- a/builder/src/bxpkg/generator.py +++ b/builder/bxbuild/generator.py @@ -7,8 +7,9 @@ from typing import Any, Dict, NamedTuple from clickgen.builders import WindowsCursor, XCursor from clickgen.core import CursorAlias from clickgen.packagers import WindowsPackager, XPackager -from bxpkg.constants import AUTHOR, URL -from bxpkg.symlinks import add_missing_xcursor + +from .constants import AUTHOR, URL +from .symlinks import add_missing_xcursor class Info(NamedTuple): diff --git a/builder/src/bxpkg/symlinks.py b/builder/bxbuild/symlinks.py similarity index 100% rename from builder/src/bxpkg/symlinks.py rename to builder/bxbuild/symlinks.py