Rename project (already taken on pypi)

This commit is contained in:
Julien Palard 2020-12-01 16:16:13 +01:00
parent c96bd0bb8b
commit c2319d88de
3 changed files with 8 additions and 8 deletions

View File

@ -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 $@
```

View File

@ -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