Skip to content

Commit

Permalink
🚑 Add typing_extensions to a dependency list to fix #31
Browse files Browse the repository at this point in the history
  • Loading branch information
b0g3r committed Oct 12, 2020
1 parent e24413b commit 99ff61b
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 42 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# plantuml2freemind
[![Downloads](https://pepy.tech/badge/plantuml2freemind)](https://pepy.tech/project/plantuml2freemind)

Converts plantuml mindmaps to FreeMind .mm files.
Converts plantuml mindmaps to FreeMind .mm files (and few other formats).

Created especially for [Teamlead Roadmap](https://github.com/tlbootcamp/tlroadmap) project, which stores and
maintains a big community-driven roadmap in a mindmap. It's very convenient to have text plantuml as a source
Expand All @@ -19,6 +19,10 @@ format and generate other required formats from it.

`plantuml2freemind --help` or `python -m plantuml2freemind --help`

Convert example in one command:

`plantuml2freemind convert examples/small_teamlead_roadmap.puml output.mm`

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Expand Down
81 changes: 41 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "plantuml2freemind"
version = "0.8.0"
version = "0.8.1"
description = "Converts plantuml mindmaps to freemind .mm files"
authors = ["Boger <kotvberloge@gmail.com>"]
license = "MIT"
Expand All @@ -15,6 +15,7 @@ python = "^3.7"
attrs = "^19.3.0"
pyyaml = "^5.3"
cleo = "^0.7.6"
typing-extensions = "^3.7.4"

[tool.poetry.dev-dependencies]
mypy = "^0.761"
Expand Down

0 comments on commit 99ff61b

Please sign in to comment.