diff --git a/MockupModule/__init__.py b/MockupEngineer/__init__.py similarity index 97% rename from MockupModule/__init__.py rename to MockupEngineer/__init__.py index 9f3fdd2..8a6cbc8 100644 --- a/MockupModule/__init__.py +++ b/MockupEngineer/__init__.py @@ -6,15 +6,15 @@ from typing import List from PIL import Image -from MockupModule import templates -from MockupModule.utils import random_string +from MockupEngineer import templates +from MockupEngineer.utils import random_string generated_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'generated') if not os.path.exists(generated_path): os.makedirs(generated_path) -class MockupEngineer: +class MockupEngineerInstance: def __init__(self): self.logger = logging.getLogger('MockupEngineer') self.templates: List[templates.Template] = [] diff --git a/MockupModule/__main__.py b/MockupEngineer/__main__.py similarity index 90% rename from MockupModule/__main__.py rename to MockupEngineer/__main__.py index 5d59929..682dec1 100644 --- a/MockupModule/__main__.py +++ b/MockupEngineer/__main__.py @@ -1,10 +1,10 @@ import os -from MockupModule import MockupEngineer +from MockupEngineer import MockupEngineerInstance def main(): - mockup = MockupEngineer() + mockup = MockupEngineerInstance() i = 0 for template in mockup.templates: diff --git a/MockupModule/templates/__init__.py b/MockupEngineer/templates/__init__.py similarity index 100% rename from MockupModule/templates/__init__.py rename to MockupEngineer/templates/__init__.py diff --git a/MockupModule/templates/example.png b/MockupEngineer/templates/example.png similarity index 100% rename from MockupModule/templates/example.png rename to MockupEngineer/templates/example.png diff --git a/MockupModule/templates/galaxys20/__init__.py b/MockupEngineer/templates/galaxys20/__init__.py similarity index 94% rename from MockupModule/templates/galaxys20/__init__.py rename to MockupEngineer/templates/galaxys20/__init__.py index bc5c643..806b378 100644 --- a/MockupModule/templates/galaxys20/__init__.py +++ b/MockupEngineer/templates/galaxys20/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/galaxys20/blue/landscape.png b/MockupEngineer/templates/galaxys20/blue/landscape.png similarity index 100% rename from MockupModule/templates/galaxys20/blue/landscape.png rename to MockupEngineer/templates/galaxys20/blue/landscape.png diff --git a/MockupModule/templates/galaxys20/blue/portrait.png b/MockupEngineer/templates/galaxys20/blue/portrait.png similarity index 100% rename from MockupModule/templates/galaxys20/blue/portrait.png rename to MockupEngineer/templates/galaxys20/blue/portrait.png diff --git a/MockupModule/templates/galaxys20/example.png b/MockupEngineer/templates/galaxys20/example.png similarity index 100% rename from MockupModule/templates/galaxys20/example.png rename to MockupEngineer/templates/galaxys20/example.png diff --git a/MockupModule/templates/galaxys20/grey/landscape.png b/MockupEngineer/templates/galaxys20/grey/landscape.png similarity index 100% rename from MockupModule/templates/galaxys20/grey/landscape.png rename to MockupEngineer/templates/galaxys20/grey/landscape.png diff --git a/MockupModule/templates/galaxys20/grey/portrait.png b/MockupEngineer/templates/galaxys20/grey/portrait.png similarity index 100% rename from MockupModule/templates/galaxys20/grey/portrait.png rename to MockupEngineer/templates/galaxys20/grey/portrait.png diff --git a/MockupModule/templates/galaxys20/landscape-mask.png b/MockupEngineer/templates/galaxys20/landscape-mask.png similarity index 100% rename from MockupModule/templates/galaxys20/landscape-mask.png rename to MockupEngineer/templates/galaxys20/landscape-mask.png diff --git a/MockupModule/templates/galaxys20/pink/landscape.png b/MockupEngineer/templates/galaxys20/pink/landscape.png similarity index 100% rename from MockupModule/templates/galaxys20/pink/landscape.png rename to MockupEngineer/templates/galaxys20/pink/landscape.png diff --git a/MockupModule/templates/galaxys20/pink/portrait.png b/MockupEngineer/templates/galaxys20/pink/portrait.png similarity index 100% rename from MockupModule/templates/galaxys20/pink/portrait.png rename to MockupEngineer/templates/galaxys20/pink/portrait.png diff --git a/MockupModule/templates/galaxys20/portrait-mask.png b/MockupEngineer/templates/galaxys20/portrait-mask.png similarity index 100% rename from MockupModule/templates/galaxys20/portrait-mask.png rename to MockupEngineer/templates/galaxys20/portrait-mask.png diff --git a/MockupModule/templates/galaxys20ultra/__init__.py b/MockupEngineer/templates/galaxys20ultra/__init__.py similarity index 94% rename from MockupModule/templates/galaxys20ultra/__init__.py rename to MockupEngineer/templates/galaxys20ultra/__init__.py index 7f504be..e660ac5 100644 --- a/MockupModule/templates/galaxys20ultra/__init__.py +++ b/MockupEngineer/templates/galaxys20ultra/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/galaxys20ultra/black/landscape.png b/MockupEngineer/templates/galaxys20ultra/black/landscape.png similarity index 100% rename from MockupModule/templates/galaxys20ultra/black/landscape.png rename to MockupEngineer/templates/galaxys20ultra/black/landscape.png diff --git a/MockupModule/templates/galaxys20ultra/black/portrait.png b/MockupEngineer/templates/galaxys20ultra/black/portrait.png similarity index 100% rename from MockupModule/templates/galaxys20ultra/black/portrait.png rename to MockupEngineer/templates/galaxys20ultra/black/portrait.png diff --git a/MockupModule/templates/galaxys20ultra/example.png b/MockupEngineer/templates/galaxys20ultra/example.png similarity index 100% rename from MockupModule/templates/galaxys20ultra/example.png rename to MockupEngineer/templates/galaxys20ultra/example.png diff --git a/MockupModule/templates/galaxys20ultra/grey/landscape.png b/MockupEngineer/templates/galaxys20ultra/grey/landscape.png similarity index 100% rename from MockupModule/templates/galaxys20ultra/grey/landscape.png rename to MockupEngineer/templates/galaxys20ultra/grey/landscape.png diff --git a/MockupModule/templates/galaxys20ultra/grey/portrait.png b/MockupEngineer/templates/galaxys20ultra/grey/portrait.png similarity index 100% rename from MockupModule/templates/galaxys20ultra/grey/portrait.png rename to MockupEngineer/templates/galaxys20ultra/grey/portrait.png diff --git a/MockupModule/templates/galaxys20ultra/landscape-mask.png b/MockupEngineer/templates/galaxys20ultra/landscape-mask.png similarity index 100% rename from MockupModule/templates/galaxys20ultra/landscape-mask.png rename to MockupEngineer/templates/galaxys20ultra/landscape-mask.png diff --git a/MockupModule/templates/galaxys20ultra/portrait-mask.png b/MockupEngineer/templates/galaxys20ultra/portrait-mask.png similarity index 100% rename from MockupModule/templates/galaxys20ultra/portrait-mask.png rename to MockupEngineer/templates/galaxys20ultra/portrait-mask.png diff --git a/MockupModule/templates/ipad9/__init__.py b/MockupEngineer/templates/ipad9/__init__.py similarity index 94% rename from MockupModule/templates/ipad9/__init__.py rename to MockupEngineer/templates/ipad9/__init__.py index bf17901..b19e9f5 100644 --- a/MockupModule/templates/ipad9/__init__.py +++ b/MockupEngineer/templates/ipad9/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/ipad9/example.png b/MockupEngineer/templates/ipad9/example.png similarity index 100% rename from MockupModule/templates/ipad9/example.png rename to MockupEngineer/templates/ipad9/example.png diff --git a/MockupModule/templates/ipad9/gold/landscape.png b/MockupEngineer/templates/ipad9/gold/landscape.png similarity index 100% rename from MockupModule/templates/ipad9/gold/landscape.png rename to MockupEngineer/templates/ipad9/gold/landscape.png diff --git a/MockupModule/templates/ipad9/gold/portrait.png b/MockupEngineer/templates/ipad9/gold/portrait.png similarity index 100% rename from MockupModule/templates/ipad9/gold/portrait.png rename to MockupEngineer/templates/ipad9/gold/portrait.png diff --git a/MockupModule/templates/ipad9/silver/landscape.png b/MockupEngineer/templates/ipad9/silver/landscape.png similarity index 100% rename from MockupModule/templates/ipad9/silver/landscape.png rename to MockupEngineer/templates/ipad9/silver/landscape.png diff --git a/MockupModule/templates/ipad9/silver/portrait.png b/MockupEngineer/templates/ipad9/silver/portrait.png similarity index 100% rename from MockupModule/templates/ipad9/silver/portrait.png rename to MockupEngineer/templates/ipad9/silver/portrait.png diff --git a/MockupModule/templates/ipad9/spacegray/landscape.png b/MockupEngineer/templates/ipad9/spacegray/landscape.png similarity index 100% rename from MockupModule/templates/ipad9/spacegray/landscape.png rename to MockupEngineer/templates/ipad9/spacegray/landscape.png diff --git a/MockupModule/templates/ipad9/spacegray/portrait.png b/MockupEngineer/templates/ipad9/spacegray/portrait.png similarity index 100% rename from MockupModule/templates/ipad9/spacegray/portrait.png rename to MockupEngineer/templates/ipad9/spacegray/portrait.png diff --git a/MockupModule/templates/ipadair4/__init__.py b/MockupEngineer/templates/ipadair4/__init__.py similarity index 95% rename from MockupModule/templates/ipadair4/__init__.py rename to MockupEngineer/templates/ipadair4/__init__.py index 27ab0f7..fc9cedb 100644 --- a/MockupModule/templates/ipadair4/__init__.py +++ b/MockupEngineer/templates/ipadair4/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/ipadair4/example.png b/MockupEngineer/templates/ipadair4/example.png similarity index 100% rename from MockupModule/templates/ipadair4/example.png rename to MockupEngineer/templates/ipadair4/example.png diff --git a/MockupModule/templates/ipadair4/green/landscape.png b/MockupEngineer/templates/ipadair4/green/landscape.png similarity index 100% rename from MockupModule/templates/ipadair4/green/landscape.png rename to MockupEngineer/templates/ipadair4/green/landscape.png diff --git a/MockupModule/templates/ipadair4/green/portrait.png b/MockupEngineer/templates/ipadair4/green/portrait.png similarity index 100% rename from MockupModule/templates/ipadair4/green/portrait.png rename to MockupEngineer/templates/ipadair4/green/portrait.png diff --git a/MockupModule/templates/ipadair4/rosegold/landscape.png b/MockupEngineer/templates/ipadair4/rosegold/landscape.png similarity index 100% rename from MockupModule/templates/ipadair4/rosegold/landscape.png rename to MockupEngineer/templates/ipadair4/rosegold/landscape.png diff --git a/MockupModule/templates/ipadair4/rosegold/portrait.png b/MockupEngineer/templates/ipadair4/rosegold/portrait.png similarity index 100% rename from MockupModule/templates/ipadair4/rosegold/portrait.png rename to MockupEngineer/templates/ipadair4/rosegold/portrait.png diff --git a/MockupModule/templates/ipadair4/silver/landscape.png b/MockupEngineer/templates/ipadair4/silver/landscape.png similarity index 100% rename from MockupModule/templates/ipadair4/silver/landscape.png rename to MockupEngineer/templates/ipadair4/silver/landscape.png diff --git a/MockupModule/templates/ipadair4/silver/portrait.png b/MockupEngineer/templates/ipadair4/silver/portrait.png similarity index 100% rename from MockupModule/templates/ipadair4/silver/portrait.png rename to MockupEngineer/templates/ipadair4/silver/portrait.png diff --git a/MockupModule/templates/ipadair4/skyblue/landscape.png b/MockupEngineer/templates/ipadair4/skyblue/landscape.png similarity index 100% rename from MockupModule/templates/ipadair4/skyblue/landscape.png rename to MockupEngineer/templates/ipadair4/skyblue/landscape.png diff --git a/MockupModule/templates/ipadair4/skyblue/portrait.png b/MockupEngineer/templates/ipadair4/skyblue/portrait.png similarity index 100% rename from MockupModule/templates/ipadair4/skyblue/portrait.png rename to MockupEngineer/templates/ipadair4/skyblue/portrait.png diff --git a/MockupModule/templates/ipadair4/spacegray/landscape.png b/MockupEngineer/templates/ipadair4/spacegray/landscape.png similarity index 100% rename from MockupModule/templates/ipadair4/spacegray/landscape.png rename to MockupEngineer/templates/ipadair4/spacegray/landscape.png diff --git a/MockupModule/templates/ipadair4/spacegray/portrait.png b/MockupEngineer/templates/ipadair4/spacegray/portrait.png similarity index 100% rename from MockupModule/templates/ipadair4/spacegray/portrait.png rename to MockupEngineer/templates/ipadair4/spacegray/portrait.png diff --git a/MockupModule/templates/ipadmini5/__init__.py b/MockupEngineer/templates/ipadmini5/__init__.py similarity index 94% rename from MockupModule/templates/ipadmini5/__init__.py rename to MockupEngineer/templates/ipadmini5/__init__.py index 8f9c613..87d99b1 100644 --- a/MockupModule/templates/ipadmini5/__init__.py +++ b/MockupEngineer/templates/ipadmini5/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/ipadmini5/example.png b/MockupEngineer/templates/ipadmini5/example.png similarity index 100% rename from MockupModule/templates/ipadmini5/example.png rename to MockupEngineer/templates/ipadmini5/example.png diff --git a/MockupModule/templates/ipadmini5/gold/landscape.png b/MockupEngineer/templates/ipadmini5/gold/landscape.png similarity index 100% rename from MockupModule/templates/ipadmini5/gold/landscape.png rename to MockupEngineer/templates/ipadmini5/gold/landscape.png diff --git a/MockupModule/templates/ipadmini5/gold/portrait.png b/MockupEngineer/templates/ipadmini5/gold/portrait.png similarity index 100% rename from MockupModule/templates/ipadmini5/gold/portrait.png rename to MockupEngineer/templates/ipadmini5/gold/portrait.png diff --git a/MockupModule/templates/ipadmini5/silver/landscape.png b/MockupEngineer/templates/ipadmini5/silver/landscape.png similarity index 100% rename from MockupModule/templates/ipadmini5/silver/landscape.png rename to MockupEngineer/templates/ipadmini5/silver/landscape.png diff --git a/MockupModule/templates/ipadmini5/silver/portrait.png b/MockupEngineer/templates/ipadmini5/silver/portrait.png similarity index 100% rename from MockupModule/templates/ipadmini5/silver/portrait.png rename to MockupEngineer/templates/ipadmini5/silver/portrait.png diff --git a/MockupModule/templates/ipadmini5/spacegray/landscape.png b/MockupEngineer/templates/ipadmini5/spacegray/landscape.png similarity index 100% rename from MockupModule/templates/ipadmini5/spacegray/landscape.png rename to MockupEngineer/templates/ipadmini5/spacegray/landscape.png diff --git a/MockupModule/templates/ipadmini5/spacegray/portrait.png b/MockupEngineer/templates/ipadmini5/spacegray/portrait.png similarity index 100% rename from MockupModule/templates/ipadmini5/spacegray/portrait.png rename to MockupEngineer/templates/ipadmini5/spacegray/portrait.png diff --git a/MockupModule/templates/ipadpro114/__init__.py b/MockupEngineer/templates/ipadpro114/__init__.py similarity index 94% rename from MockupModule/templates/ipadpro114/__init__.py rename to MockupEngineer/templates/ipadpro114/__init__.py index a73a54c..f885d99 100644 --- a/MockupModule/templates/ipadpro114/__init__.py +++ b/MockupEngineer/templates/ipadpro114/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/ipadpro114/example.png b/MockupEngineer/templates/ipadpro114/example.png similarity index 100% rename from MockupModule/templates/ipadpro114/example.png rename to MockupEngineer/templates/ipadpro114/example.png diff --git a/MockupModule/templates/ipadpro114/silver/landscape.png b/MockupEngineer/templates/ipadpro114/silver/landscape.png similarity index 100% rename from MockupModule/templates/ipadpro114/silver/landscape.png rename to MockupEngineer/templates/ipadpro114/silver/landscape.png diff --git a/MockupModule/templates/ipadpro114/silver/portrait.png b/MockupEngineer/templates/ipadpro114/silver/portrait.png similarity index 100% rename from MockupModule/templates/ipadpro114/silver/portrait.png rename to MockupEngineer/templates/ipadpro114/silver/portrait.png diff --git a/MockupModule/templates/ipadpro114/spacegray/landscape.png b/MockupEngineer/templates/ipadpro114/spacegray/landscape.png similarity index 100% rename from MockupModule/templates/ipadpro114/spacegray/landscape.png rename to MockupEngineer/templates/ipadpro114/spacegray/landscape.png diff --git a/MockupModule/templates/ipadpro114/spacegray/portrait.png b/MockupEngineer/templates/ipadpro114/spacegray/portrait.png similarity index 100% rename from MockupModule/templates/ipadpro114/spacegray/portrait.png rename to MockupEngineer/templates/ipadpro114/spacegray/portrait.png diff --git a/MockupModule/templates/ipadpro134/__init__.py b/MockupEngineer/templates/ipadpro134/__init__.py similarity index 94% rename from MockupModule/templates/ipadpro134/__init__.py rename to MockupEngineer/templates/ipadpro134/__init__.py index c496205..66b8caa 100644 --- a/MockupModule/templates/ipadpro134/__init__.py +++ b/MockupEngineer/templates/ipadpro134/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/ipadpro134/example.png b/MockupEngineer/templates/ipadpro134/example.png similarity index 100% rename from MockupModule/templates/ipadpro134/example.png rename to MockupEngineer/templates/ipadpro134/example.png diff --git a/MockupModule/templates/ipadpro134/silver/landscape.png b/MockupEngineer/templates/ipadpro134/silver/landscape.png similarity index 100% rename from MockupModule/templates/ipadpro134/silver/landscape.png rename to MockupEngineer/templates/ipadpro134/silver/landscape.png diff --git a/MockupModule/templates/ipadpro134/silver/portrait.png b/MockupEngineer/templates/ipadpro134/silver/portrait.png similarity index 100% rename from MockupModule/templates/ipadpro134/silver/portrait.png rename to MockupEngineer/templates/ipadpro134/silver/portrait.png diff --git a/MockupModule/templates/ipadpro134/spacegray/landscape.png b/MockupEngineer/templates/ipadpro134/spacegray/landscape.png similarity index 100% rename from MockupModule/templates/ipadpro134/spacegray/landscape.png rename to MockupEngineer/templates/ipadpro134/spacegray/landscape.png diff --git a/MockupModule/templates/ipadpro134/spacegray/portrait.png b/MockupEngineer/templates/ipadpro134/spacegray/portrait.png similarity index 100% rename from MockupModule/templates/ipadpro134/spacegray/portrait.png rename to MockupEngineer/templates/ipadpro134/spacegray/portrait.png diff --git a/MockupModule/templates/iphone12/__init__.py b/MockupEngineer/templates/iphone12/__init__.py similarity index 95% rename from MockupModule/templates/iphone12/__init__.py rename to MockupEngineer/templates/iphone12/__init__.py index 45e3fa8..407b23a 100644 --- a/MockupModule/templates/iphone12/__init__.py +++ b/MockupEngineer/templates/iphone12/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/iphone12/black/landscape.png b/MockupEngineer/templates/iphone12/black/landscape.png similarity index 100% rename from MockupModule/templates/iphone12/black/landscape.png rename to MockupEngineer/templates/iphone12/black/landscape.png diff --git a/MockupModule/templates/iphone12/black/portrait.png b/MockupEngineer/templates/iphone12/black/portrait.png similarity index 100% rename from MockupModule/templates/iphone12/black/portrait.png rename to MockupEngineer/templates/iphone12/black/portrait.png diff --git a/MockupModule/templates/iphone12/blue/landscape.png b/MockupEngineer/templates/iphone12/blue/landscape.png similarity index 100% rename from MockupModule/templates/iphone12/blue/landscape.png rename to MockupEngineer/templates/iphone12/blue/landscape.png diff --git a/MockupModule/templates/iphone12/blue/portrait.png b/MockupEngineer/templates/iphone12/blue/portrait.png similarity index 100% rename from MockupModule/templates/iphone12/blue/portrait.png rename to MockupEngineer/templates/iphone12/blue/portrait.png diff --git a/MockupModule/templates/iphone12/example.png b/MockupEngineer/templates/iphone12/example.png similarity index 100% rename from MockupModule/templates/iphone12/example.png rename to MockupEngineer/templates/iphone12/example.png diff --git a/MockupModule/templates/iphone12/green/landscape.png b/MockupEngineer/templates/iphone12/green/landscape.png similarity index 100% rename from MockupModule/templates/iphone12/green/landscape.png rename to MockupEngineer/templates/iphone12/green/landscape.png diff --git a/MockupModule/templates/iphone12/green/portrait.png b/MockupEngineer/templates/iphone12/green/portrait.png similarity index 100% rename from MockupModule/templates/iphone12/green/portrait.png rename to MockupEngineer/templates/iphone12/green/portrait.png diff --git a/MockupModule/templates/iphone12/red/landscape.png b/MockupEngineer/templates/iphone12/red/landscape.png similarity index 100% rename from MockupModule/templates/iphone12/red/landscape.png rename to MockupEngineer/templates/iphone12/red/landscape.png diff --git a/MockupModule/templates/iphone12/red/portrait.png b/MockupEngineer/templates/iphone12/red/portrait.png similarity index 100% rename from MockupModule/templates/iphone12/red/portrait.png rename to MockupEngineer/templates/iphone12/red/portrait.png diff --git a/MockupModule/templates/iphone12/white/landscape.png b/MockupEngineer/templates/iphone12/white/landscape.png similarity index 100% rename from MockupModule/templates/iphone12/white/landscape.png rename to MockupEngineer/templates/iphone12/white/landscape.png diff --git a/MockupModule/templates/iphone12/white/portrait.png b/MockupEngineer/templates/iphone12/white/portrait.png similarity index 100% rename from MockupModule/templates/iphone12/white/portrait.png rename to MockupEngineer/templates/iphone12/white/portrait.png diff --git a/MockupModule/templates/iphone12mini/__init__.py b/MockupEngineer/templates/iphone12mini/__init__.py similarity index 95% rename from MockupModule/templates/iphone12mini/__init__.py rename to MockupEngineer/templates/iphone12mini/__init__.py index 112cfc8..1b59478 100644 --- a/MockupModule/templates/iphone12mini/__init__.py +++ b/MockupEngineer/templates/iphone12mini/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/iphone12mini/black/landscape.png b/MockupEngineer/templates/iphone12mini/black/landscape.png similarity index 100% rename from MockupModule/templates/iphone12mini/black/landscape.png rename to MockupEngineer/templates/iphone12mini/black/landscape.png diff --git a/MockupModule/templates/iphone12mini/black/portrait.png b/MockupEngineer/templates/iphone12mini/black/portrait.png similarity index 100% rename from MockupModule/templates/iphone12mini/black/portrait.png rename to MockupEngineer/templates/iphone12mini/black/portrait.png diff --git a/MockupModule/templates/iphone12mini/blue/landscape.png b/MockupEngineer/templates/iphone12mini/blue/landscape.png similarity index 100% rename from MockupModule/templates/iphone12mini/blue/landscape.png rename to MockupEngineer/templates/iphone12mini/blue/landscape.png diff --git a/MockupModule/templates/iphone12mini/blue/portrait.png b/MockupEngineer/templates/iphone12mini/blue/portrait.png similarity index 100% rename from MockupModule/templates/iphone12mini/blue/portrait.png rename to MockupEngineer/templates/iphone12mini/blue/portrait.png diff --git a/MockupModule/templates/iphone12mini/example.png b/MockupEngineer/templates/iphone12mini/example.png similarity index 100% rename from MockupModule/templates/iphone12mini/example.png rename to MockupEngineer/templates/iphone12mini/example.png diff --git a/MockupModule/templates/iphone12mini/green/landscape.png b/MockupEngineer/templates/iphone12mini/green/landscape.png similarity index 100% rename from MockupModule/templates/iphone12mini/green/landscape.png rename to MockupEngineer/templates/iphone12mini/green/landscape.png diff --git a/MockupModule/templates/iphone12mini/green/portrait.png b/MockupEngineer/templates/iphone12mini/green/portrait.png similarity index 100% rename from MockupModule/templates/iphone12mini/green/portrait.png rename to MockupEngineer/templates/iphone12mini/green/portrait.png diff --git a/MockupModule/templates/iphone12mini/red/landscape.png b/MockupEngineer/templates/iphone12mini/red/landscape.png similarity index 100% rename from MockupModule/templates/iphone12mini/red/landscape.png rename to MockupEngineer/templates/iphone12mini/red/landscape.png diff --git a/MockupModule/templates/iphone12mini/red/portrait.png b/MockupEngineer/templates/iphone12mini/red/portrait.png similarity index 100% rename from MockupModule/templates/iphone12mini/red/portrait.png rename to MockupEngineer/templates/iphone12mini/red/portrait.png diff --git a/MockupModule/templates/iphone12mini/white/landscape.png b/MockupEngineer/templates/iphone12mini/white/landscape.png similarity index 100% rename from MockupModule/templates/iphone12mini/white/landscape.png rename to MockupEngineer/templates/iphone12mini/white/landscape.png diff --git a/MockupModule/templates/iphone12mini/white/portrait.png b/MockupEngineer/templates/iphone12mini/white/portrait.png similarity index 100% rename from MockupModule/templates/iphone12mini/white/portrait.png rename to MockupEngineer/templates/iphone12mini/white/portrait.png diff --git a/MockupModule/templates/iphone12pro/__init__.py b/MockupEngineer/templates/iphone12pro/__init__.py similarity index 94% rename from MockupModule/templates/iphone12pro/__init__.py rename to MockupEngineer/templates/iphone12pro/__init__.py index d2c4a8e..7585744 100644 --- a/MockupModule/templates/iphone12pro/__init__.py +++ b/MockupEngineer/templates/iphone12pro/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/iphone12pro/example.png b/MockupEngineer/templates/iphone12pro/example.png similarity index 100% rename from MockupModule/templates/iphone12pro/example.png rename to MockupEngineer/templates/iphone12pro/example.png diff --git a/MockupModule/templates/iphone12pro/gold/landscape.png b/MockupEngineer/templates/iphone12pro/gold/landscape.png similarity index 100% rename from MockupModule/templates/iphone12pro/gold/landscape.png rename to MockupEngineer/templates/iphone12pro/gold/landscape.png diff --git a/MockupModule/templates/iphone12pro/gold/portrait.png b/MockupEngineer/templates/iphone12pro/gold/portrait.png similarity index 100% rename from MockupModule/templates/iphone12pro/gold/portrait.png rename to MockupEngineer/templates/iphone12pro/gold/portrait.png diff --git a/MockupModule/templates/iphone12pro/graphite/landscape.png b/MockupEngineer/templates/iphone12pro/graphite/landscape.png similarity index 100% rename from MockupModule/templates/iphone12pro/graphite/landscape.png rename to MockupEngineer/templates/iphone12pro/graphite/landscape.png diff --git a/MockupModule/templates/iphone12pro/graphite/portrait.png b/MockupEngineer/templates/iphone12pro/graphite/portrait.png similarity index 100% rename from MockupModule/templates/iphone12pro/graphite/portrait.png rename to MockupEngineer/templates/iphone12pro/graphite/portrait.png diff --git a/MockupModule/templates/iphone12pro/pacificblue/landscape.png b/MockupEngineer/templates/iphone12pro/pacificblue/landscape.png similarity index 100% rename from MockupModule/templates/iphone12pro/pacificblue/landscape.png rename to MockupEngineer/templates/iphone12pro/pacificblue/landscape.png diff --git a/MockupModule/templates/iphone12pro/pacificblue/portrait.png b/MockupEngineer/templates/iphone12pro/pacificblue/portrait.png similarity index 100% rename from MockupModule/templates/iphone12pro/pacificblue/portrait.png rename to MockupEngineer/templates/iphone12pro/pacificblue/portrait.png diff --git a/MockupModule/templates/iphone12pro/silver/landscape.png b/MockupEngineer/templates/iphone12pro/silver/landscape.png similarity index 100% rename from MockupModule/templates/iphone12pro/silver/landscape.png rename to MockupEngineer/templates/iphone12pro/silver/landscape.png diff --git a/MockupModule/templates/iphone12pro/silver/portrait.png b/MockupEngineer/templates/iphone12pro/silver/portrait.png similarity index 100% rename from MockupModule/templates/iphone12pro/silver/portrait.png rename to MockupEngineer/templates/iphone12pro/silver/portrait.png diff --git a/MockupModule/templates/iphone12promax/__init__.py b/MockupEngineer/templates/iphone12promax/__init__.py similarity index 94% rename from MockupModule/templates/iphone12promax/__init__.py rename to MockupEngineer/templates/iphone12promax/__init__.py index 86a1c13..a92be54 100644 --- a/MockupModule/templates/iphone12promax/__init__.py +++ b/MockupEngineer/templates/iphone12promax/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/iphone12promax/example.png b/MockupEngineer/templates/iphone12promax/example.png similarity index 100% rename from MockupModule/templates/iphone12promax/example.png rename to MockupEngineer/templates/iphone12promax/example.png diff --git a/MockupModule/templates/iphone12promax/gold/landscape.png b/MockupEngineer/templates/iphone12promax/gold/landscape.png similarity index 100% rename from MockupModule/templates/iphone12promax/gold/landscape.png rename to MockupEngineer/templates/iphone12promax/gold/landscape.png diff --git a/MockupModule/templates/iphone12promax/gold/portrait.png b/MockupEngineer/templates/iphone12promax/gold/portrait.png similarity index 100% rename from MockupModule/templates/iphone12promax/gold/portrait.png rename to MockupEngineer/templates/iphone12promax/gold/portrait.png diff --git a/MockupModule/templates/iphone12promax/graphite/landscape.png b/MockupEngineer/templates/iphone12promax/graphite/landscape.png similarity index 100% rename from MockupModule/templates/iphone12promax/graphite/landscape.png rename to MockupEngineer/templates/iphone12promax/graphite/landscape.png diff --git a/MockupModule/templates/iphone12promax/graphite/portrait.png b/MockupEngineer/templates/iphone12promax/graphite/portrait.png similarity index 100% rename from MockupModule/templates/iphone12promax/graphite/portrait.png rename to MockupEngineer/templates/iphone12promax/graphite/portrait.png diff --git a/MockupModule/templates/iphone12promax/pacificblue/landscape.png b/MockupEngineer/templates/iphone12promax/pacificblue/landscape.png similarity index 100% rename from MockupModule/templates/iphone12promax/pacificblue/landscape.png rename to MockupEngineer/templates/iphone12promax/pacificblue/landscape.png diff --git a/MockupModule/templates/iphone12promax/pacificblue/portrait.png b/MockupEngineer/templates/iphone12promax/pacificblue/portrait.png similarity index 100% rename from MockupModule/templates/iphone12promax/pacificblue/portrait.png rename to MockupEngineer/templates/iphone12promax/pacificblue/portrait.png diff --git a/MockupModule/templates/iphone12promax/silver/landscape.png b/MockupEngineer/templates/iphone12promax/silver/landscape.png similarity index 100% rename from MockupModule/templates/iphone12promax/silver/landscape.png rename to MockupEngineer/templates/iphone12promax/silver/landscape.png diff --git a/MockupModule/templates/iphone12promax/silver/portrait.png b/MockupEngineer/templates/iphone12promax/silver/portrait.png similarity index 100% rename from MockupModule/templates/iphone12promax/silver/portrait.png rename to MockupEngineer/templates/iphone12promax/silver/portrait.png diff --git a/MockupModule/templates/iphonese2020/__init__.py b/MockupEngineer/templates/iphonese2020/__init__.py similarity index 94% rename from MockupModule/templates/iphonese2020/__init__.py rename to MockupEngineer/templates/iphonese2020/__init__.py index be5a1bd..a2a7e41 100644 --- a/MockupModule/templates/iphonese2020/__init__.py +++ b/MockupEngineer/templates/iphonese2020/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/iphonese2020/black/landscape.png b/MockupEngineer/templates/iphonese2020/black/landscape.png similarity index 100% rename from MockupModule/templates/iphonese2020/black/landscape.png rename to MockupEngineer/templates/iphonese2020/black/landscape.png diff --git a/MockupModule/templates/iphonese2020/black/portrait.png b/MockupEngineer/templates/iphonese2020/black/portrait.png similarity index 100% rename from MockupModule/templates/iphonese2020/black/portrait.png rename to MockupEngineer/templates/iphonese2020/black/portrait.png diff --git a/MockupModule/templates/iphonese2020/example.png b/MockupEngineer/templates/iphonese2020/example.png similarity index 100% rename from MockupModule/templates/iphonese2020/example.png rename to MockupEngineer/templates/iphonese2020/example.png diff --git a/MockupModule/templates/iphonese2020/red/landscape.png b/MockupEngineer/templates/iphonese2020/red/landscape.png similarity index 100% rename from MockupModule/templates/iphonese2020/red/landscape.png rename to MockupEngineer/templates/iphonese2020/red/landscape.png diff --git a/MockupModule/templates/iphonese2020/red/portrait.png b/MockupEngineer/templates/iphonese2020/red/portrait.png similarity index 100% rename from MockupModule/templates/iphonese2020/red/portrait.png rename to MockupEngineer/templates/iphonese2020/red/portrait.png diff --git a/MockupModule/templates/iphonese2020/white/landscape.png b/MockupEngineer/templates/iphonese2020/white/landscape.png similarity index 100% rename from MockupModule/templates/iphonese2020/white/landscape.png rename to MockupEngineer/templates/iphonese2020/white/landscape.png diff --git a/MockupModule/templates/iphonese2020/white/portrait.png b/MockupEngineer/templates/iphonese2020/white/portrait.png similarity index 100% rename from MockupModule/templates/iphonese2020/white/portrait.png rename to MockupEngineer/templates/iphonese2020/white/portrait.png diff --git a/MockupModule/templates/iphonexr/__init__.py b/MockupEngineer/templates/iphonexr/__init__.py similarity index 95% rename from MockupModule/templates/iphonexr/__init__.py rename to MockupEngineer/templates/iphonexr/__init__.py index cdbd0a1..940b4ca 100644 --- a/MockupModule/templates/iphonexr/__init__.py +++ b/MockupEngineer/templates/iphonexr/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/iphonexr/blue/landscape.png b/MockupEngineer/templates/iphonexr/blue/landscape.png similarity index 100% rename from MockupModule/templates/iphonexr/blue/landscape.png rename to MockupEngineer/templates/iphonexr/blue/landscape.png diff --git a/MockupModule/templates/iphonexr/blue/portrait.png b/MockupEngineer/templates/iphonexr/blue/portrait.png similarity index 100% rename from MockupModule/templates/iphonexr/blue/portrait.png rename to MockupEngineer/templates/iphonexr/blue/portrait.png diff --git a/MockupModule/templates/iphonexr/coral/landscape.png b/MockupEngineer/templates/iphonexr/coral/landscape.png similarity index 100% rename from MockupModule/templates/iphonexr/coral/landscape.png rename to MockupEngineer/templates/iphonexr/coral/landscape.png diff --git a/MockupModule/templates/iphonexr/coral/portrait.png b/MockupEngineer/templates/iphonexr/coral/portrait.png similarity index 100% rename from MockupModule/templates/iphonexr/coral/portrait.png rename to MockupEngineer/templates/iphonexr/coral/portrait.png diff --git a/MockupModule/templates/iphonexr/example.png b/MockupEngineer/templates/iphonexr/example.png similarity index 100% rename from MockupModule/templates/iphonexr/example.png rename to MockupEngineer/templates/iphonexr/example.png diff --git a/MockupModule/templates/iphonexr/red/landscape.png b/MockupEngineer/templates/iphonexr/red/landscape.png similarity index 100% rename from MockupModule/templates/iphonexr/red/landscape.png rename to MockupEngineer/templates/iphonexr/red/landscape.png diff --git a/MockupModule/templates/iphonexr/red/portrait.png b/MockupEngineer/templates/iphonexr/red/portrait.png similarity index 100% rename from MockupModule/templates/iphonexr/red/portrait.png rename to MockupEngineer/templates/iphonexr/red/portrait.png diff --git a/MockupModule/templates/iphonexr/silver/landscape.png b/MockupEngineer/templates/iphonexr/silver/landscape.png similarity index 100% rename from MockupModule/templates/iphonexr/silver/landscape.png rename to MockupEngineer/templates/iphonexr/silver/landscape.png diff --git a/MockupModule/templates/iphonexr/silver/portrait.png b/MockupEngineer/templates/iphonexr/silver/portrait.png similarity index 100% rename from MockupModule/templates/iphonexr/silver/portrait.png rename to MockupEngineer/templates/iphonexr/silver/portrait.png diff --git a/MockupModule/templates/iphonexr/spacegray/landscape.png b/MockupEngineer/templates/iphonexr/spacegray/landscape.png similarity index 100% rename from MockupModule/templates/iphonexr/spacegray/landscape.png rename to MockupEngineer/templates/iphonexr/spacegray/landscape.png diff --git a/MockupModule/templates/iphonexr/spacegray/portrait.png b/MockupEngineer/templates/iphonexr/spacegray/portrait.png similarity index 100% rename from MockupModule/templates/iphonexr/spacegray/portrait.png rename to MockupEngineer/templates/iphonexr/spacegray/portrait.png diff --git a/MockupModule/templates/iphonexr/yellow/landscape.png b/MockupEngineer/templates/iphonexr/yellow/landscape.png similarity index 100% rename from MockupModule/templates/iphonexr/yellow/landscape.png rename to MockupEngineer/templates/iphonexr/yellow/landscape.png diff --git a/MockupModule/templates/iphonexr/yellow/portrait.png b/MockupEngineer/templates/iphonexr/yellow/portrait.png similarity index 100% rename from MockupModule/templates/iphonexr/yellow/portrait.png rename to MockupEngineer/templates/iphonexr/yellow/portrait.png diff --git a/MockupModule/templates/macbook122016/__init__.py b/MockupEngineer/templates/macbook122016/__init__.py similarity index 94% rename from MockupModule/templates/macbook122016/__init__.py rename to MockupEngineer/templates/macbook122016/__init__.py index d6c4bfb..161b056 100644 --- a/MockupModule/templates/macbook122016/__init__.py +++ b/MockupEngineer/templates/macbook122016/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/macbook122016/example.png b/MockupEngineer/templates/macbook122016/example.png similarity index 100% rename from MockupModule/templates/macbook122016/example.png rename to MockupEngineer/templates/macbook122016/example.png diff --git a/MockupModule/templates/macbook122016/gold/landscape.png b/MockupEngineer/templates/macbook122016/gold/landscape.png similarity index 100% rename from MockupModule/templates/macbook122016/gold/landscape.png rename to MockupEngineer/templates/macbook122016/gold/landscape.png diff --git a/MockupModule/templates/macbook122016/gold/portrait.png b/MockupEngineer/templates/macbook122016/gold/portrait.png similarity index 100% rename from MockupModule/templates/macbook122016/gold/portrait.png rename to MockupEngineer/templates/macbook122016/gold/portrait.png diff --git a/MockupModule/templates/macbook122016/spacegray/landscape.png b/MockupEngineer/templates/macbook122016/spacegray/landscape.png similarity index 100% rename from MockupModule/templates/macbook122016/spacegray/landscape.png rename to MockupEngineer/templates/macbook122016/spacegray/landscape.png diff --git a/MockupModule/templates/macbook122016/spacegray/portrait.png b/MockupEngineer/templates/macbook122016/spacegray/portrait.png similarity index 100% rename from MockupModule/templates/macbook122016/spacegray/portrait.png rename to MockupEngineer/templates/macbook122016/spacegray/portrait.png diff --git a/MockupModule/templates/pixel/__init__.py b/MockupEngineer/templates/pixel/__init__.py similarity index 94% rename from MockupModule/templates/pixel/__init__.py rename to MockupEngineer/templates/pixel/__init__.py index 826e1aa..bd87e74 100644 --- a/MockupModule/templates/pixel/__init__.py +++ b/MockupEngineer/templates/pixel/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/pixel/black/landscape.png b/MockupEngineer/templates/pixel/black/landscape.png similarity index 100% rename from MockupModule/templates/pixel/black/landscape.png rename to MockupEngineer/templates/pixel/black/landscape.png diff --git a/MockupModule/templates/pixel/black/portrait.png b/MockupEngineer/templates/pixel/black/portrait.png similarity index 100% rename from MockupModule/templates/pixel/black/portrait.png rename to MockupEngineer/templates/pixel/black/portrait.png diff --git a/MockupModule/templates/pixel/blue/landscape.png b/MockupEngineer/templates/pixel/blue/landscape.png similarity index 100% rename from MockupModule/templates/pixel/blue/landscape.png rename to MockupEngineer/templates/pixel/blue/landscape.png diff --git a/MockupModule/templates/pixel/blue/portrait.png b/MockupEngineer/templates/pixel/blue/portrait.png similarity index 100% rename from MockupModule/templates/pixel/blue/portrait.png rename to MockupEngineer/templates/pixel/blue/portrait.png diff --git a/MockupModule/templates/pixel/example.png b/MockupEngineer/templates/pixel/example.png similarity index 100% rename from MockupModule/templates/pixel/example.png rename to MockupEngineer/templates/pixel/example.png diff --git a/MockupModule/templates/pixel/silver/landscape.png b/MockupEngineer/templates/pixel/silver/landscape.png similarity index 100% rename from MockupModule/templates/pixel/silver/landscape.png rename to MockupEngineer/templates/pixel/silver/landscape.png diff --git a/MockupModule/templates/pixel/silver/portrait.png b/MockupEngineer/templates/pixel/silver/portrait.png similarity index 100% rename from MockupModule/templates/pixel/silver/portrait.png rename to MockupEngineer/templates/pixel/silver/portrait.png diff --git a/MockupModule/templates/pixel4/__init__.py b/MockupEngineer/templates/pixel4/__init__.py similarity index 94% rename from MockupModule/templates/pixel4/__init__.py rename to MockupEngineer/templates/pixel4/__init__.py index 568ada7..abb98a9 100644 --- a/MockupModule/templates/pixel4/__init__.py +++ b/MockupEngineer/templates/pixel4/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/pixel4/black/landscape.png b/MockupEngineer/templates/pixel4/black/landscape.png similarity index 100% rename from MockupModule/templates/pixel4/black/landscape.png rename to MockupEngineer/templates/pixel4/black/landscape.png diff --git a/MockupModule/templates/pixel4/black/portrait.png b/MockupEngineer/templates/pixel4/black/portrait.png similarity index 100% rename from MockupModule/templates/pixel4/black/portrait.png rename to MockupEngineer/templates/pixel4/black/portrait.png diff --git a/MockupModule/templates/pixel4/example.png b/MockupEngineer/templates/pixel4/example.png similarity index 100% rename from MockupModule/templates/pixel4/example.png rename to MockupEngineer/templates/pixel4/example.png diff --git a/MockupModule/templates/pixel4/orange/landscape.png b/MockupEngineer/templates/pixel4/orange/landscape.png similarity index 100% rename from MockupModule/templates/pixel4/orange/landscape.png rename to MockupEngineer/templates/pixel4/orange/landscape.png diff --git a/MockupModule/templates/pixel4/orange/portrait.png b/MockupEngineer/templates/pixel4/orange/portrait.png similarity index 100% rename from MockupModule/templates/pixel4/orange/portrait.png rename to MockupEngineer/templates/pixel4/orange/portrait.png diff --git a/MockupModule/templates/pixel4/white/landscape.png b/MockupEngineer/templates/pixel4/white/landscape.png similarity index 100% rename from MockupModule/templates/pixel4/white/landscape.png rename to MockupEngineer/templates/pixel4/white/landscape.png diff --git a/MockupModule/templates/pixel4/white/portrait.png b/MockupEngineer/templates/pixel4/white/portrait.png similarity index 100% rename from MockupModule/templates/pixel4/white/portrait.png rename to MockupEngineer/templates/pixel4/white/portrait.png diff --git a/MockupModule/templates/pixel4xl/__init__.py b/MockupEngineer/templates/pixel4xl/__init__.py similarity index 94% rename from MockupModule/templates/pixel4xl/__init__.py rename to MockupEngineer/templates/pixel4xl/__init__.py index 686c51a..f2ffd86 100644 --- a/MockupModule/templates/pixel4xl/__init__.py +++ b/MockupEngineer/templates/pixel4xl/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/pixel4xl/black/landscape.png b/MockupEngineer/templates/pixel4xl/black/landscape.png similarity index 100% rename from MockupModule/templates/pixel4xl/black/landscape.png rename to MockupEngineer/templates/pixel4xl/black/landscape.png diff --git a/MockupModule/templates/pixel4xl/black/portrait.png b/MockupEngineer/templates/pixel4xl/black/portrait.png similarity index 100% rename from MockupModule/templates/pixel4xl/black/portrait.png rename to MockupEngineer/templates/pixel4xl/black/portrait.png diff --git a/MockupModule/templates/pixel4xl/example.png b/MockupEngineer/templates/pixel4xl/example.png similarity index 100% rename from MockupModule/templates/pixel4xl/example.png rename to MockupEngineer/templates/pixel4xl/example.png diff --git a/MockupModule/templates/pixel4xl/orange/landscape.png b/MockupEngineer/templates/pixel4xl/orange/landscape.png similarity index 100% rename from MockupModule/templates/pixel4xl/orange/landscape.png rename to MockupEngineer/templates/pixel4xl/orange/landscape.png diff --git a/MockupModule/templates/pixel4xl/orange/portrait.png b/MockupEngineer/templates/pixel4xl/orange/portrait.png similarity index 100% rename from MockupModule/templates/pixel4xl/orange/portrait.png rename to MockupEngineer/templates/pixel4xl/orange/portrait.png diff --git a/MockupModule/templates/pixel4xl/white/landscape.png b/MockupEngineer/templates/pixel4xl/white/landscape.png similarity index 100% rename from MockupModule/templates/pixel4xl/white/landscape.png rename to MockupEngineer/templates/pixel4xl/white/landscape.png diff --git a/MockupModule/templates/pixel4xl/white/portrait.png b/MockupEngineer/templates/pixel4xl/white/portrait.png similarity index 100% rename from MockupModule/templates/pixel4xl/white/portrait.png rename to MockupEngineer/templates/pixel4xl/white/portrait.png diff --git a/MockupModule/templates/pixel5/__init__.py b/MockupEngineer/templates/pixel5/__init__.py similarity index 94% rename from MockupModule/templates/pixel5/__init__.py rename to MockupEngineer/templates/pixel5/__init__.py index c1df45b..ce27dc7 100644 --- a/MockupModule/templates/pixel5/__init__.py +++ b/MockupEngineer/templates/pixel5/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/pixel5/black/landscape.png b/MockupEngineer/templates/pixel5/black/landscape.png similarity index 100% rename from MockupModule/templates/pixel5/black/landscape.png rename to MockupEngineer/templates/pixel5/black/landscape.png diff --git a/MockupModule/templates/pixel5/black/portrait.png b/MockupEngineer/templates/pixel5/black/portrait.png similarity index 100% rename from MockupModule/templates/pixel5/black/portrait.png rename to MockupEngineer/templates/pixel5/black/portrait.png diff --git a/MockupModule/templates/pixel5/example.png b/MockupEngineer/templates/pixel5/example.png similarity index 100% rename from MockupModule/templates/pixel5/example.png rename to MockupEngineer/templates/pixel5/example.png diff --git a/MockupModule/templates/pixel5/sortasage/landscape.png b/MockupEngineer/templates/pixel5/sortasage/landscape.png similarity index 100% rename from MockupModule/templates/pixel5/sortasage/landscape.png rename to MockupEngineer/templates/pixel5/sortasage/landscape.png diff --git a/MockupModule/templates/pixel5/sortasage/portrait.png b/MockupEngineer/templates/pixel5/sortasage/portrait.png similarity index 100% rename from MockupModule/templates/pixel5/sortasage/portrait.png rename to MockupEngineer/templates/pixel5/sortasage/portrait.png diff --git a/MockupModule/templates/watchseries644mm/__init__.py b/MockupEngineer/templates/watchseries644mm/__init__.py similarity index 96% rename from MockupModule/templates/watchseries644mm/__init__.py rename to MockupEngineer/templates/watchseries644mm/__init__.py index d0f882f..12a498f 100644 --- a/MockupModule/templates/watchseries644mm/__init__.py +++ b/MockupEngineer/templates/watchseries644mm/__init__.py @@ -1,6 +1,6 @@ from dataclasses import dataclass -from MockupModule.templates import Template +from MockupEngineer.templates import Template @dataclass diff --git a/MockupModule/templates/watchseries644mm/blue_aluminum/landscape.png b/MockupEngineer/templates/watchseries644mm/blue_aluminum/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/blue_aluminum/landscape.png rename to MockupEngineer/templates/watchseries644mm/blue_aluminum/landscape.png diff --git a/MockupModule/templates/watchseries644mm/blue_aluminum/portrait.png b/MockupEngineer/templates/watchseries644mm/blue_aluminum/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/blue_aluminum/portrait.png rename to MockupEngineer/templates/watchseries644mm/blue_aluminum/portrait.png diff --git a/MockupModule/templates/watchseries644mm/dark_titanium/landscape.png b/MockupEngineer/templates/watchseries644mm/dark_titanium/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/dark_titanium/landscape.png rename to MockupEngineer/templates/watchseries644mm/dark_titanium/landscape.png diff --git a/MockupModule/templates/watchseries644mm/dark_titanium/portrait.png b/MockupEngineer/templates/watchseries644mm/dark_titanium/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/dark_titanium/portrait.png rename to MockupEngineer/templates/watchseries644mm/dark_titanium/portrait.png diff --git a/MockupModule/templates/watchseries644mm/example.png b/MockupEngineer/templates/watchseries644mm/example.png similarity index 100% rename from MockupModule/templates/watchseries644mm/example.png rename to MockupEngineer/templates/watchseries644mm/example.png diff --git a/MockupModule/templates/watchseries644mm/gold_aluminum/landscape.png b/MockupEngineer/templates/watchseries644mm/gold_aluminum/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/gold_aluminum/landscape.png rename to MockupEngineer/templates/watchseries644mm/gold_aluminum/landscape.png diff --git a/MockupModule/templates/watchseries644mm/gold_aluminum/portrait.png b/MockupEngineer/templates/watchseries644mm/gold_aluminum/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/gold_aluminum/portrait.png rename to MockupEngineer/templates/watchseries644mm/gold_aluminum/portrait.png diff --git a/MockupModule/templates/watchseries644mm/gold_steel/landscape.png b/MockupEngineer/templates/watchseries644mm/gold_steel/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/gold_steel/landscape.png rename to MockupEngineer/templates/watchseries644mm/gold_steel/landscape.png diff --git a/MockupModule/templates/watchseries644mm/gold_steel/portrait.png b/MockupEngineer/templates/watchseries644mm/gold_steel/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/gold_steel/portrait.png rename to MockupEngineer/templates/watchseries644mm/gold_steel/portrait.png diff --git a/MockupModule/templates/watchseries644mm/graphite_steel/landscape.png b/MockupEngineer/templates/watchseries644mm/graphite_steel/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/graphite_steel/landscape.png rename to MockupEngineer/templates/watchseries644mm/graphite_steel/landscape.png diff --git a/MockupModule/templates/watchseries644mm/graphite_steel/portrait.png b/MockupEngineer/templates/watchseries644mm/graphite_steel/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/graphite_steel/portrait.png rename to MockupEngineer/templates/watchseries644mm/graphite_steel/portrait.png diff --git a/MockupModule/templates/watchseries644mm/light_titanium/landscape.png b/MockupEngineer/templates/watchseries644mm/light_titanium/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/light_titanium/landscape.png rename to MockupEngineer/templates/watchseries644mm/light_titanium/landscape.png diff --git a/MockupModule/templates/watchseries644mm/light_titanium/portrait.png b/MockupEngineer/templates/watchseries644mm/light_titanium/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/light_titanium/portrait.png rename to MockupEngineer/templates/watchseries644mm/light_titanium/portrait.png diff --git a/MockupModule/templates/watchseries644mm/red_aluminum/landscape.png b/MockupEngineer/templates/watchseries644mm/red_aluminum/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/red_aluminum/landscape.png rename to MockupEngineer/templates/watchseries644mm/red_aluminum/landscape.png diff --git a/MockupModule/templates/watchseries644mm/red_aluminum/portrait.png b/MockupEngineer/templates/watchseries644mm/red_aluminum/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/red_aluminum/portrait.png rename to MockupEngineer/templates/watchseries644mm/red_aluminum/portrait.png diff --git a/MockupModule/templates/watchseries644mm/silver_aluminum/landscape.png b/MockupEngineer/templates/watchseries644mm/silver_aluminum/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/silver_aluminum/landscape.png rename to MockupEngineer/templates/watchseries644mm/silver_aluminum/landscape.png diff --git a/MockupModule/templates/watchseries644mm/silver_aluminum/portrait.png b/MockupEngineer/templates/watchseries644mm/silver_aluminum/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/silver_aluminum/portrait.png rename to MockupEngineer/templates/watchseries644mm/silver_aluminum/portrait.png diff --git a/MockupModule/templates/watchseries644mm/silver_steel/landscape.png b/MockupEngineer/templates/watchseries644mm/silver_steel/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/silver_steel/landscape.png rename to MockupEngineer/templates/watchseries644mm/silver_steel/landscape.png diff --git a/MockupModule/templates/watchseries644mm/silver_steel/portrait.png b/MockupEngineer/templates/watchseries644mm/silver_steel/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/silver_steel/portrait.png rename to MockupEngineer/templates/watchseries644mm/silver_steel/portrait.png diff --git a/MockupModule/templates/watchseries644mm/spacegray_aluminum/landscape.png b/MockupEngineer/templates/watchseries644mm/spacegray_aluminum/landscape.png similarity index 100% rename from MockupModule/templates/watchseries644mm/spacegray_aluminum/landscape.png rename to MockupEngineer/templates/watchseries644mm/spacegray_aluminum/landscape.png diff --git a/MockupModule/templates/watchseries644mm/spacegray_aluminum/portrait.png b/MockupEngineer/templates/watchseries644mm/spacegray_aluminum/portrait.png similarity index 100% rename from MockupModule/templates/watchseries644mm/spacegray_aluminum/portrait.png rename to MockupEngineer/templates/watchseries644mm/spacegray_aluminum/portrait.png diff --git a/MockupModule/utils.py b/MockupEngineer/utils/__init__.py similarity index 100% rename from MockupModule/utils.py rename to MockupEngineer/utils/__init__.py diff --git a/readme.md b/readme.md index c9c30c8..ef962d3 100644 --- a/readme.md +++ b/readme.md @@ -37,12 +37,13 @@ $ python -m pip install MockupEngineer ## Usage #### In Python console: + ```python -from MockupModule import MockupEngineer +from MockupEngineer import MockupEngineerInstance -mockup = MockupEngineer() +mockup = MockupEngineerInstance() -mockup.generate(template=mockup.templates[0], +mockup.generate(template=mockup.templates[0], screenshot_path='/path/to/screenshot', color=mockup.templates[0].colors[0].color) ``` diff --git a/setup.py b/setup.py index 53d163d..a0190fb 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='MockupEngineer', - version='2022.01.23.16', + version='2022.01.23.17', packages=find_packages(), url='https://github.com/ulbwazhine/MockupEngineer', license='MIT',