File: setup.py

package info (click to toggle)
python-textile 1%3A2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 112 kB
  • ctags: 94
  • sloc: python: 888; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 574 bytes parent folder | download
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
        """
      )