Skip to content

Commit e5b6bdb

Browse files
author
Hrabal
committed
setup.py fix
1 parent 73e7598 commit e5b6bdb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
author_email='federicocerchiari@gmail.com',
3434
description='Python OOP Templating System',
3535
license='APACHE 2.0',
36-
packages=['tempy'],
36+
packages=['tempy', 'tempy.widgets'],
3737
url='https://github.com/Hrabal/TemPy',
3838
keywords=['python3', 'templating', 'html', 'web'],
3939
download_url='https://github.com/Hrabal/TemPy/archive/%s.tar.gz' % __version__,

tempy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
from types import ModuleType
55

6-
__version__ = "1.5.0"
6+
__version__ = "1.5.1"
77
VERSION = tuple(map(int, __version__.split(".")))
88

99
if sys.version_info < (3, 3):

0 commit comments

Comments
 (0)