Skip to content

Commit

Permalink
New version: back to no bundled file.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmontes committed Jul 22, 2021
1 parent f9eae46 commit 2fd19d7
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def find_meta(meta):
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
package_data={
"": ["*.png", "*.txt"],
"": ["*.png"],
},
zip_safe=False,
classifiers=CLASSIFIERS,
Expand Down
2 changes: 1 addition & 1 deletion src/puppy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Puppy - A minimal GUI app to test pup.
"""

__version__ = '1.7.0'
__version__ = '1.8.0'

__title__ = 'puppy'
__description__ = 'Puppy, a minimal GUI app to test pup'
Expand Down
4 changes: 0 additions & 4 deletions src/puppy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,6 @@ def main():
window = _create_window()
log_lines = _add_widgets(window)

hello_txt_path = ilr.files(__package__) / 'hello.txt'
with open(hello_txt_path, 'rt') as hello_file:
log_lines(hello_file.readlines())

log_lines([
'os.getcwd():',
f' {os.getcwd()!r}',
Expand Down
1 change: 0 additions & 1 deletion src/puppy/hello.txt

This file was deleted.

0 comments on commit 2fd19d7

Please sign in to comment.