Skip to content

Commit 8e4a975

Browse files
committed
🔖 0.1.3 publication to https://pypi.org/project/py2puml/
1 parent bfbd8e9 commit 8e4a975

File tree

5 files changed

+10
-28
lines changed

5 files changed

+10
-28
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
__pycache__/
33
.venv/
44
*.egg-info/
5-
*.puml
5+
*.puml
6+
dist/

py2puml/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.1'
1+
__version__ = '0.1.3'

pyproject.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
[tool.poetry]
22
name = "py2puml"
3-
version = "0.1.0"
3+
version = "0.1.3"
44
description = "Generate Plantuml diagrams to document your python code "
5+
keywords = ["class diagram", "PlantUML", "documentation"]
6+
readme = "README.md"
7+
repository = "https://github.com/lucsorel/py2puml"
58
authors = ["Luc Sorel-Giffo"]
9+
maintainers = ["Luc Sorel-Giffo"]
10+
license = "MIT"
611

712
[tool.poetry.dependencies]
813
python = "^3.7"

setup.py

-24
This file was deleted.

tests/test_py2puml.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == '0.1.1'
5+
assert __version__ == '0.1.3'

0 commit comments

Comments
 (0)