pyact-cli 0.1.0__tar.gz → 0.2.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyact-cli
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: A CLI tool to compile .pamd files to Markdown.
5
5
  Home-page: https://github.com/yourusername/pyact
6
6
  Author: Your Name
@@ -1,5 +1,5 @@
1
1
  import inspect
2
- from .py2tex import py2tex
2
+ from pyact.py2tex import py2tex
3
3
 
4
4
  def equation(func: function, values: list) -> str:
5
5
  source = inspect.getsource(func)
@@ -0,0 +1 @@
1
+ __version__ = "0.2.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyact-cli
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: A CLI tool to compile .pamd files to Markdown.
5
5
  Home-page: https://github.com/yourusername/pyact
6
6
  Author: Your Name
@@ -1,9 +1,9 @@
1
1
  README.md
2
2
  setup.py
3
+ pamd_helpers/__init__.py
3
4
  pyact/__init__.py
4
5
  pyact/cli.py
5
6
  pyact/core.py
6
- pyact/helpers.py
7
7
  pyact/py2tex.py
8
8
  pyact_cli.egg-info/PKG-INFO
9
9
  pyact_cli.egg-info/SOURCES.txt
@@ -0,0 +1,2 @@
1
+ pamd_helpers
2
+ pyact
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="pyact-cli",
8
- version="0.1.0",
8
+ version="0.2.0",
9
9
  author="Your Name",
10
10
  author_email="your.email@example.com",
11
11
  description="A CLI tool to compile .pamd files to Markdown.",
@@ -1 +0,0 @@
1
- __version__ = "0.1.0"
@@ -1 +0,0 @@
1
- pyact
File without changes
File without changes
File without changes
File without changes
File without changes