Skip to content

Commit faa3de0

Browse files
committed
docs(readme): complex compound types are properly handled (#38)
1 parent 5e405cf commit faa3de0

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

py2puml/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
def run():
1010
argparser = ArgumentParser(description='Generate PlantUML class diagrams to document your Python application.')
1111

12-
argparser.add_argument('-v', '--version', action='version', version='py2puml 0.7.0')
12+
argparser.add_argument('-v', '--version', action='version', version='py2puml 0.7.1')
1313
argparser.add_argument('path', metavar='path', type=str, help='the filepath to the domain')
1414
argparser.add_argument('module', metavar='module', type=str, help='the module name of the domain', default=None)
1515

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "py2puml"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "Generate PlantUML class diagrams to document your Python application."
55
keywords = ["class diagram", "PlantUML", "documentation", "inspection", "AST"]
66
readme = "README.md"

tests/__init__.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
from os.path import dirname, realpath, join
2-
from re import compile
2+
from re import compile as re_compile
33
from itertools import takewhile
44

55
# exports the version and the project description read from the pyproject.toml file
66
__version__ = None
77
__description__ = None
88

99
PARENT_DIR = dirname(dirname(realpath(__file__)))
10-
VERSION_PATTERN = compile('^version = "([^"]+)"$')
11-
DESCRIPTION_PATTERN = compile('^description = "([^"]+)"$')
10+
VERSION_PATTERN = re_compile('^version = "([^"]+)"$')
11+
DESCRIPTION_PATTERN = re_compile('^description = "([^"]+)"$')
1212

13-
def get_from_line_and_pattern(line: str, pattern) -> str:
14-
pattern_match = pattern.search(line)
13+
def get_from_line_and_pattern(content_line: str, pattern) -> str:
14+
pattern_match = pattern.search(content_line)
1515
if pattern_match is None:
1616
return None
1717
else:
1818
return pattern_match.group(1)
1919

20-
with open(join(PARENT_DIR, 'pyproject.toml')) as pyproject:
20+
with open(join(PARENT_DIR, 'pyproject.toml'), encoding='utf8') as pyproject:
2121
for line in takewhile(lambda _: __version__ is None or __description__ is None, pyproject):
2222
__version__ = __version__ if __version__ is not None else get_from_line_and_pattern(line, VERSION_PATTERN)
2323
__description__ = __description__ if __description__ is not None else get_from_line_and_pattern(line, DESCRIPTION_PATTERN)

tests/py2puml/test__init__.py

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

33
# Ensures the library version is modified in the pyproject.toml file when upgrading it (pull request)
44
def test_version():
5-
assert __version__ == '0.7.0'
5+
assert __version__ == '0.7.1'
66

77
# Description also output in the CLI
88
def test_description():

tests/py2puml/test_cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
from subprocess import run, PIPE
12
from typing import List
23

34
from pytest import mark
4-
from subprocess import run, PIPE
55

66
from py2puml.py2puml import py2puml
77
from tests import __version__, __description__

0 commit comments

Comments
 (0)