diff --git a/README.md b/README.md index 68415c6..961e5b3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# md2reveal +# mdtoreveal It's an extremly basic [Markdown](https://daringfireball.net/projects/markdown/) to @@ -11,12 +11,12 @@ syntax highlighting by handling it. ## Usage - md2reveal my_prez.md --output my_prez.html + mdtoreveal my_prez.md --output my_prez.html It's also allowed to skip the output file, so its name is guessed, the previous command is equivalent to the following one: - md2reveal my_prez.md + mdtoreveal my_prez.md ## Syntax @@ -67,5 +67,5 @@ HTML := $(SRCS:.md=.html) static: $(HTML) %.html: %.md - md2reveal $< -o $@ + mdtoreveal $< -o $@ ``` diff --git a/md2reveal.py b/mdtoreveal.py similarity index 100% rename from md2reveal.py rename to mdtoreveal.py diff --git a/setup.cfg b/setup.cfg index 2f003f0..dd87202 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,12 +1,12 @@ [metadata] -name = md2reveal +name = mdtoreveal version = 0.1 description = Transform a flat markdown to a reveal.js presentation. long_description = file: README.md long_description_content_type = text/markdown; charset=UTF-8 author = Julien Palard author_email = julien@palard.fr -url = https://github.com/JulienPalard/md2reveal +url = https://github.com/JulienPalard/mdtoreveal license = MIT License classifiers = Development Status :: 5 - Production/Stable @@ -19,11 +19,11 @@ classifiers = Programming Language :: Python :: 3.8 [options] -py_modules = md2reveal +py_modules = mdtoreveal python_requires = >= 3.6 install_requires = jinja2 requests [options.entry_points] -console_scripts = md2reveal=md2reveal:main +console_scripts = mdtoreveal=mdtoreveal:main