Skip to content

Commit

Permalink
publishing 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jsamsa committed Dec 5, 2009
1 parent 9d65f08 commit 84bdad3
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ h2. Usage
<pre>
<code>

run 'git clone git://github.com/chrisdrackett/python-textile.git textile' on your python path.

>>> import textile
>>> textile.__version__
'2.1.3'
'2.1.4'
>>> s = """
... _This_ is a *test.*
...
Expand Down
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env python


from distutils.core import setup


setup(name='textile',
version='2.1.4',
description='This is Textile. A Humane Web Text Generator.',
author='Jason Samsa',
author_email='jsamsa@gmail.com',
url='http://loopcore.com/python-textile/',
py_modules=['textile.functions'],
platforms = ['any'],
license = ['BSD'],
long_description = """
Textile is a XHTML generator using a simple markup developed by Dean Allen.
Python 2.4 users will need to install the uuid module
"""
)
File renamed without changes.
4 changes: 2 additions & 2 deletions functions.py → textile/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
A Humane Web Text Generator
"""

__version__ = '2.1.3'
__version__ = '2.1.4'

__date__ = '2009/02/07'
__date__ = '2009/12/04'

__copyright__ = """
Copyright (c) 2009, Jason Samsa, http://jsamsa.com/
Expand Down

0 comments on commit 84bdad3

Please sign in to comment.