refactor / rename files into different project structure

This commit is contained in:
Maximilian Keßler 2022-02-05 19:09:09 +01:00
parent e74c081e42
commit 1ab35ed7c9
18 changed files with 9 additions and 10 deletions

View file

@ -2,7 +2,7 @@ from pathlib import Path, PurePath
from typing import Optional
from .formatting_config import BasicFormattingConfig
from ..paths import PyTeXRootDirType
from PyTeX.build.paths import PyTeXRootDirType
class GlobalPyTeXConfig:

View file

@ -1,6 +1,5 @@
from pathlib import Path, PurePath, PosixPath, PurePosixPath, PureWindowsPath, WindowsPath
from typing import Union
from PyTeX.config.global_config import GlobalPyTeXConfig
from pathlib import Path, PurePath, PurePosixPath, PureWindowsPath
from PyTeX.build.config.global_config import GlobalPyTeXConfig
from .enums import PyTeXRootDirType
import os

View file

@ -1,8 +1,8 @@
import os
from pathlib import Path, WindowsPath, PosixPath
from PyTeX.config import GlobalPyTeXConfig
from PyTeX.paths import PyTeXRootDirType
from PyTeX.build.config import GlobalPyTeXConfig
from PyTeX.build.paths import PyTeXRootDirType
class RelativePath(Path):

View file

@ -1,10 +1,10 @@
from typing import Optional, List, Dict, Tuple
from PyTeX.build.build_info import BasicBuildInfo
from PyTeX.config import BasicFormattingConfig, GlobalPyTeXConfig
from PyTeX.build.config import GlobalPyTeXConfig
from .enums import PyTeXFileType
from PyTeX.formatting.formatter import Formatter
from ...paths import RelativePath
from PyTeX.format.formatter import Formatter
from PyTeX.build.paths import RelativePath
class PyTeXSourceFile:

View file

@ -1,4 +1,4 @@
from PyTeX.paths import PyTeXRootDirType
from PyTeX.build.paths import PyTeXRootDirType
from PyTeX.build.pytex_file import PyTeXFileType