diff --git a/setup.py b/setup.py index 31391ae..c83839d 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ author_email='federicocerchiari@gmail.com', 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__, diff --git a/tempy/__init__.py b/tempy/__init__.py index eb57886..e6a2d60 100644 --- a/tempy/__init__.py +++ b/tempy/__init__.py @@ -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):