pyeasyphd 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyeasyphd might be problematic. Click here for more details.

Files changed (27) hide show
  1. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/PKG-INFO +1 -1
  2. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/main/python_run_tex.py +1 -1
  3. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/pyeasyphd.sublime-settings +1 -1
  4. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/py_run_bib_md_tex.py +1 -1
  5. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyproject.toml +1 -1
  6. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/README.md +0 -0
  7. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/.python-version +0 -0
  8. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/Main.sublime-menu +0 -0
  9. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/__init__.py +0 -0
  10. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/main/__init__.py +0 -0
  11. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/main/basic_input.py +0 -0
  12. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/main/pandoc_md_to.py +0 -0
  13. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/main/python_run_md.py +0 -0
  14. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/pyeasyphd.py +0 -0
  15. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/pyeasyphd.sublime-syntax +0 -0
  16. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/__init__.py +0 -0
  17. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/generate/generate_from_bibs.py +0 -0
  18. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/generate/generate_html.py +0 -0
  19. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/generate/generate_library.py +0 -0
  20. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/generate/generate_links.py +0 -0
  21. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/search/data.py +0 -0
  22. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/search/search_base.py +0 -0
  23. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/search/search_core.py +0 -0
  24. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/search/search_keywords.py +0 -0
  25. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/search/search_writers.py +0 -0
  26. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/tools/search/utils.py +0 -0
  27. {pyeasyphd-0.1.1 → pyeasyphd-0.1.2}/pyeasyphd/utils/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyeasyphd
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: pyeasyphd
5
5
  License: GPL-3.0-or-later
6
6
  Keywords: Python,Markdown,LaTex
@@ -31,7 +31,7 @@ class PythonRunTex(BasicInput):
31
31
  # for tex
32
32
  self.final_output_main_tex_name: str = options.get("final_output_main_tex_name", "")
33
33
  self.run_latex: bool = options.get("run_latex", False)
34
- self.pdflatex_xelatex: str = options.get("pdflatex_xelatex", "pdflatex") # pdflatex, xelatex
34
+ self.pdflatex_xelatex: str = options.get("pdflatex_xelatex", "xelatex") # pdflatex, xelatex
35
35
  self.delete_run_latex_cache: bool = options.get("delete_run_latex_cache", True)
36
36
  self.latex_clean_file_types: Optional[List[str]] = options.get("latex_clean_file_types", None)
37
37
 
@@ -47,7 +47,7 @@
47
47
  // true, false
48
48
  "run_latex": false,
49
49
  // "pdflatex", "xelatex"
50
- "pdflatex_xelatex": "pdflatex",
50
+ "pdflatex_xelatex": "xelatex",
51
51
  // true, false
52
52
  "delete_run_latex_cache": true,
53
53
  "latex_clean_file_types": [
@@ -57,7 +57,7 @@ class PyRunBibMdTex(BasicInput):
57
57
  self.figure_folder_name = options.get("figure_folder_name", "fig") # "" or "figs" or "main"
58
58
  self.bib_folder_name = options.get("bib_folder_name", "bib") # "" or "bibs" or "main"
59
59
  self.md_folder_name = options.get("md_folder_name", "md") # "" or "mds" or "main"
60
- self.tex_folder_name = options.get("tex_folder_name", "tex") # "" or "texes" or "main"
60
+ self.tex_folder_name = options.get("tex_folder_name", "tex") # "" or "texs" or "main"
61
61
 
62
62
  # Cleanup options
63
63
  self.delete_original_md_in_output_folder = options.get("delete_original_md_in_output_folder", False)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pyeasyphd"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "pyeasyphd"
5
5
  license = "GPL-3.0-or-later"
6
6
  authors = ["NextAI <nextartifintell@gmail.com>"]
File without changes