Skip to content

Commit

Permalink
setup.py fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hrabal committed Dec 31, 2020
1 parent 73e7598 commit e5b6bdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
author_email='[email protected]',
description='Python OOP Templating System',
license='APACHE 2.0',
packages=['tempy'],
packages=['tempy', 'tempy.widgets'],
url='https://github.com/Hrabal/TemPy',
keywords=['python3', 'templating', 'html', 'web'],
download_url='https://github.com/Hrabal/TemPy/archive/%s.tar.gz' % __version__,
Expand Down
2 changes: 1 addition & 1 deletion tempy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
from types import ModuleType

__version__ = "1.5.0"
__version__ = "1.5.1"
VERSION = tuple(map(int, __version__.split(".")))

if sys.version_info < (3, 3):
Expand Down

0 comments on commit e5b6bdb

Please sign in to comment.