Skip to content

Commit

Permalink
Fix example in readme, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpoletaev committed Mar 6, 2016
1 parent 36ebbd8 commit ead7e62
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
__pycache__
dist
drafts
htmlcov
*.egg-info
*.pyc
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Example
doc = HTMLDocument()
with doc.head():
with doc.title('Document')
doc.title('Document')
with doc.body():
doc.h1('Helo world!', class_="heading")
Expand Down
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
from setuptools import setup, find_packages
from setuptools import setup

setup(
name='tag',
version='1.0.0',
packages=find_packages(),
version='1.0.1',
description='Tool for generating HTML and XML documents',
keywords='html xml',
packages=['tag'],
author='Maxim Poletaev',
author_email='max.poletaev@gmail.com',
url='https://github.com/zenwalker/python-tag',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)

0 comments on commit ead7e62

Please sign in to comment.