diff --git a/MockupEngineer/templates/__init__.py b/MockupEngineer/templates/__init__.py index 353c0f4..afeaa4d 100644 --- a/MockupEngineer/templates/__init__.py +++ b/MockupEngineer/templates/__init__.py @@ -4,7 +4,7 @@ from dataclasses import dataclass, field from pathlib import Path from typing import List -templates_path = os.path.join("/".join(os.path.dirname(os.path.abspath(__file__)).split('/')[:-1]), 'templates') +templates_path = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'templates') def __list_all_templates(): diff --git a/setup.py b/setup.py index 28dfb74..012b4af 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='MockupEngineer', - version='2022.01.30.2', + version='2022.01.31.1', packages=find_packages(), url='https://github.com/ulbwazhine/MockupEngineer', license='MIT',