1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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
"""
)
|