Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions markata/__about__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.4.0.b1"
3 changes: 0 additions & 3 deletions markata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
from markata.cli.summary import Summary
from markata.lifecycle import LifeCycle

__version__ = "0.4.0.b1"


logger = logging.getLogger("markata")

DEFAULT_MD_EXTENSIONS = [
Expand Down
10 changes: 10 additions & 0 deletions markata/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import os

from markata import Markata
from markata.cli import cli

if __name__ == "__main__":
m = Markata()

if "ipython" not in os.environ.get("_", ""):
cli()
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ keywords = [
name = "markata"
readme = "README.md"
requires-python = ">=3.6"
version = "0.4.0.b0"
[[project.authors]]
name = "Waylon Walker"
email = "waylon@waylonwalker.com"
Expand Down