Skip to content

Commit 29ca2b6

Browse files
committed
minor
1 parent 323c893 commit 29ca2b6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Data Integrity Fingerprint (DIF)
55
[![PyPI](https://img.shields.io/pypi/v/dataintegrityfingerprint?style=flat)](https://pypi.org/project/dataintegrityfingerprint/)
66
[![Automated test suite](https://github.com/expyriment/dataintegrityfingerprint-python/actions/workflows/automated_test_suite.yml/badge.svg)](https://github.com/expyriment/dataintegrityfingerprint-python/actions/workflows/automated_test_suite.yml)
77

8-
**Reference Python implementation**
8+
**A reference implementation in Python**
99
* Command line interface (CLI) application
1010
* Graphical user interface (GUI) application
1111
* Programming library (Python package)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def get_readme():
2525
author='Oliver Lindemann, Florian Krause',
2626
author_email='oliver@expyriment.org, florian@expyriment.org',
2727
description='Data Integrity Fingerprint (DIF) - ' \
28-
'Reference Python implementation',
28+
'A reference implementation in Python',
2929
long_description=get_readme(),
3030
long_description_content_type='text/markdown',
3131
url="https://github.com/expyriment/dataintegrityfingerprint-python",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Data Integrity Fingerprint (DIF).
22
3-
Reference Python implementation.
3+
A reference implementation in Python.
44
55
For specification see https://github.com/expyriment/DIF.
66
@@ -9,7 +9,7 @@
99
__author__ = 'Oliver Lindemann <oliver@expyriment.org>, ' \
1010
'Florian Krause <florian@expyriment.org>'
1111

12-
__version__ = '0.7.4'
12+
__version__ = '0.7.5'
1313

1414

1515
from .dif import DataIntegrityFingerprint

src/dataintegrityfingerprint/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def progress(count, total, status=''):
2525
sys.stdout.flush()
2626

2727
parser = argparse.ArgumentParser(
28-
description="""Data Integrity Fingerprint (DIF)
29-
Reference Python implementation v{0}""".format(__version__),
28+
description="""Data Integrity Fingerprint (DIF) - A reference implementation in Python
29+
Version: v{0}""".format(__version__),
3030
formatter_class=argparse.RawDescriptionHelpFormatter,
3131
epilog="""Authors:
3232
Oliver Lindemann <oliver@expyriment.org>

src/dataintegrityfingerprint/gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(self, master, *args, **kwargs):
2929
self.master = master
3030
self.master.title("Data Integrity Fingerprint (DIF)")
3131
self.about_text = """Data Integrity Fingerprint (DIF)
32-
Reference Python implementation v{0}
32+
A reference implementation in Python v{0}
3333
3434
Authors:
3535
Oliver Lindemann <oliver@expyriment.org>

0 commit comments

Comments
 (0)