Skip to content

Commit

Permalink
Version increase to 0.1.7; Removed dependency on lxml
Browse files Browse the repository at this point in the history
  • Loading branch information
oksome committed Aug 9, 2014
1 parent cce5980 commit 735cc77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
long_description = file.read()

setup(name='Tumulus',
version='0.1.7',
version='0.1.8',
description='Python HTML Generator for Recyclable Web Elements',
long_description=long_description,
author='OKso.me',
author_email='@okso.me',
url='https://github.com/oksome/Tumulus/',
packages=['tumulus', 'tumulus.lib', 'tumulus.plugins'],
install_requires=['beautifulsoup4', 'html5lib', 'lxml'],
install_requires=['beautifulsoup4', 'html5lib'],
license='AGPLv3',
keywords="html generator template templating engine",
classifiers=['Development Status :: 3 - Alpha',
Expand Down
4 changes: 2 additions & 2 deletions tumulus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

__author__ = "OKso <okso.me>"
__version__ = '0.1.7'
__version__ = '0.1.8'

from tumulus.tags import tags
import tumulus.formulas as formulas
import tumulus.lib as lib

# Shortcuts
t = tags
f = formulas
f = formulas

0 comments on commit 735cc77

Please sign in to comment.